Reputation: 44278
what escape character is
\u000a
I would like it to be a quotation mark, but this gigantic unicode table I looked at did not account for this one
Upvotes: 25
Views: 57136
Reputation: 599
None. Escape characters depend on the context, but U+000A is a line feed, which is generally not an escape character.
Upvotes: 0
Reputation: 1
With the little bit of research and my understanding I can say it is a 16-bit number so. And every 4 nibbles represent in between 0 to f, so coming to the question it is 000a right. The rightmost nibble represents "a" which has a value of 10 in decimal. So the answer would be 10.
Upvotes: 0
Reputation: 23989
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
Upvotes: 18
Reputation: 499142
Without looking at a Unicode table I would say this is a Line Feed (ASCII 10).
Upvotes: 43