The unicode is
and it's being used in an XML document.
相关问题
- Views base64 encoded blob in HTML with PHP
- Illegal to have multiple roots (start tag in epilo
- Is there a way to play audio on a mobile browser w
- HTML form is not sending $_POST values
- implementing html5 drag and drop photos with knock
There are some great lookup tools on the Web:
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).
Check the chart: unicodelookup.com
It is the Line Feed character.
It's the newline character.