\u000a 是什么转义字符
什么是转义字符
\u000a
我希望它是一个引号,但是我查看的这个巨大的 unicode 表没有解释这个
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果不看 Unicode 表,我会说这是换行符 (ASCII 10)。
Without looking at a Unicode table I would say this is a Line Feed (ASCII 10).
基本上是
\n
,nl = New line = \u000a< /code>
在 ASCII 表中。
在 Unicode 中,它是换行符:
换行符:
LF = \n = \u000A
回车符:
CR = \r = \u000D
请参阅:https://en.wikipedia.org/wiki/ASCII#Code_chart
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
经过一点研究和我的理解,我可以说它是一个 16 位数字。每 4 个半字节代表 0 到 f 之间的值,所以说到问题,正确的是 000a。最右边的半字节代表“a”,其十进制值为 10。所以答案是 10。
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.