Chapter 2 — Organizing Data in XML
XML elements can contain text content that represents data values. Because XML uses certain characters as part of its syntax, special characters such as <, >, and & must be written using escape sequences.
Example: Escaped characters
<note>
<text>5 < 10 and 10 > 5</text>
</note>Here, < and > are used to represent the characters < and >.