Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
Example: <company>AT&amp;T</company> – jacktrades Dec 5 '12 at 19:47

3 Answers

up vote 297 down vote accepted

There are only five:

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

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

share|improve this answer
14  
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 '12 at 21:51
9  
@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 '12 at 9:23
1  
Also for line breaks you need to use &#xA; &#xD; and &#x9; for tab, if you need these characters in an attribute. – radistao Nov 26 '12 at 22:33
Carriage Return &#xD is only included for backward-compatibility as noted in the section that precedes the one linked to by MicSim. Avoid using it as it is ether removed or replaced by &#xA. – seininn May 17 at 18:44

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    >
share|improve this answer

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.

share|improve this answer
How would one do that? – Tyler Crompton Feb 6 at 14:18
Tyler, you could replace it with a space or a regular tab – Charon ME Feb 7 at 10:35
Oh, I was thinking there exists an escape sequence. In that case, I would simply remove them. – Tyler Crompton Feb 7 at 13:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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