Where can I get a list of the XML document escape characters?
|
There are only five:
They're easy to remember. HTML has its own set of escape codes which cover a lot more characters. |
|||||||||||||||||
|
|
Perhaps this will help: List of XML and HTML character entity references:
That article lists the following five predefined XML entities:
|
||||
|
|
|
in addition to the commonly known five characters [<, >, &, ", '] I would also escape the vertical tab character (0x0B). It is valid UTF-8, but not valid XML 1.0, and even many libraries (including libxml2) miss it and silently output invalid XML. |
|||||||
|
<company>AT&T</company>– jacktrades Dec 5 '12 at 19:47