What does unicode character represent?

后端 未结 4 916
一个人的身影
一个人的身影 2020-12-16 09:02

The unicode is and it\'s being used in an XML document.

相关标签:
4条回答
  • 2020-12-16 09:32

    It's the ASCII character LF, Line Feed.

    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.

    So, only a LF character in an XML value would be a line break from a Linux system (or similar).

    0 讨论(0)
  • 2020-12-16 09:39

    There are some great lookup tools on the Web:

    • Unicode Lookup
    • Uncode Character Search
    0 讨论(0)
  • 2020-12-16 09:46

    Check the chart: unicodelookup.com

    It is the Line Feed character.

    0 讨论(0)
  • 2020-12-16 09:47

    It's the newline character.

    0 讨论(0)
提交回复
热议问题