Ok here is a list of newlines per operating system type:
Linux Systems:
    LF - LF (Line feed, '\n', 0x0A, 10 in decimal) 
Unix Systems:
    LF - LF (Line feed, '\n', 0x0A, 10 in decimal) 
Windows Systems:
    CR followed by LF (CR+LF, '\r\n', 0x0D0A)
Mac OS Systems:
    LF:    Line Feed, U+000A
Android Systems:
    LF - LF (Line feed, '\n', 0x0A, 10 in decimal) 
Unicode Systems:
The Unicode standard defines a number of characters that conforming applications should recognize as line terminators:[3]
LF:    Line Feed, U+000A
VT:    Vertical Tab, U+000B
FF:    Form Feed, U+000C
CR:    Carriage Return, U+000D
CR+LF: CR (U+000D) followed by LF (U+000A)
NEL:   Next Line, U+0085
LS:    Line Separator, U+2028
PS:    Paragraph Separator, U+2029
Based on:
http://en.wikipedia.org/wiki/Newline