CQM
CQM

Reputation: 44278

What escape character is \u000a

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

Answers (4)

Philippe Cloutier
Philippe Cloutier

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

Lucky Arjun
Lucky Arjun

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

Dorian
Dorian

Reputation: 23989

Basically it's \n, nl = New line = \u000a in the ASCII table.

In Unicode it's a Line Feed:

See: https://en.wikipedia.org/wiki/ASCII#Code_chart

Upvotes: 18

Oded
Oded

Reputation: 499142

Without looking at a Unicode table I would say this is a Line Feed (ASCII 10).

Upvotes: 43

Related Questions