Where can I get a list of the XML document escape characters?
|
feedback
|
|
There are only five:
They're easy to remember. HTML has its own set of escape codes which cover a lot more characters. | |||||||||||||||
feedback
|
|
Perhaps this will help: List of XML and HTML character entity references:
That article lists the following five predefined XML entities:
| ||||
|
feedback
|
|
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. | ||||
|
feedback
|