Where can I get a list of the XML document escape characters?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 174 down vote accepted

There are only five:

"   "
'   '
<   &lt;
>   &gt;
&   &amp;

They're easy to remember. HTML has its own set of escape codes which cover a lot more characters.

link|improve this answer
9  
The ultimate source: w3.org/TR/xml/#syntax – MicSim Oct 27 '10 at 15:29
But as for HTML, we would only have to escape the five above too right? – Pacerier Jan 12 at 21:51
1  
Lovely profile description you have. Could use more pictures and --------------------es. Damn it, ninjas with laser nunchaku are attacking me. brb. – muntoo Feb 8 at 6:41
1  
@Pacerier, I beg you not to write your own XML/HTML escaping code. Use a library function or you're bound to miss a special case. – Jason Mar 16 at 9:23
feedback

Perhaps this will help:

List of XML and HTML character entity references:

In SGML, HTML and XML documents, the logical constructs known as character data and attribute values consist of sequences of characters, in which each character can manifest directly (representing itself), or can be represented by a series of characters called a character reference, of which there are two types: a numeric character reference and a character entity reference. This article lists the character entity references that are valid in HTML and XML documents.

That article lists the following five predefined XML entities:

quot "
amp &
apos '
lt <
gt >

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.