Html 什么是unicode字符 代表?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/3025265/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
What does unicode character represent?
提问by vette982
The unicode is
and it's being used in an XML document.
unicode 是
并且它正在 XML 文档中使用。
回答by Kevin Panko
回答by Guffa
It's the ASCII character LF, Line Feed.
它是 ASCII 字符 LF,换行符。
Some systems (e.g. Windows) use the combination CR+LF,
, for line break, some systems (e.g. Linux) use only LF as line break, some systems (e.g. Macintosh) use only CR as line break.
某些系统(例如 Windows)使用组合 CR+LF,
, 用于换行,某些系统(例如 Linux)仅使用 LF 作为换行符,某些系统(例如 Macintosh)仅使用 CR 作为换行符。
So, only a LF character in an XML value would be a line break from a Linux system (or similar).
因此,只有 XML 值中的 LF 字符才是 Linux 系统(或类似系统)的换行符。
回答by Gert Grenander
There are some great lookup tools on the Web:
网上有一些很棒的查找工具:
回答by Matthew Flaschen
It's the newline character.
这是换行符。