Line feed
In computing, line feed is one of control characters in ASCII that is used to move printer or display one line down. Line feed often follows carriage return to indicate a new line for example, in the Microsoft Windows operating system. In some environments, such as UNIX, carriage return is omitted and only line feed indicates a new line.In ASCII, it is defined as 10 in decimal and 0A in hexadecimal.
In the C programming language and many other languages influenced by it, \
denotes this character.
The term derives from the fact that when this control character was sent to early printers, it would physically move down a line, similar to the operation of a typewriter.