What escape character is \u000a
Without looking at a Unicode table I would say this is a Line Feed (ASCII 10).
Basically it's \n
, nl = New line = \u000a
in the ASCII table.
In Unicode it's a Line Feed:
Line Feed:
LF = \n = \u000A
Carriage Return:
CR = \r = \u000D
See: https://en.wikipedia.org/wiki/ASCII#Code_chart