These are character escape sequences in many languages (c, c++, java, javascript, .NET to name a few). They directly translate to the equivalent ASCII values (you posted this as chr(13)
which in one language would produce a character based on that ASCII value).
Their meanings are:
\n == chr(13) == carriage return
\r == chr(10) == line feed
\t == chr (9) == tab
These all come from control characters for printers, in turn coming from typewriters.
A carriage return brings the typewriter to the beginning of the line.
A line feed brings the typewriter to the next line.
A tab moves the typewriter to the next tab stop.
A combination of line feed and carriage return is needed to bring the typewriter to the start of the next line.
The differences between windows and unix stem from the different decisions on the different platforms on how to represent a new line. Unix went with carriage return (probably also to save space), Windows with both. Macs used to use linefeeds for the same.