up vote 82 down vote favorite
30
share [g+] share [fb]

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

link|improve this question

80% accept rate
feedback

2 Answers

up vote 131 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
5  
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
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

Your Answer

 
or
required, but never shown

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