Model structured documents with elements, attributes, namespaces, schemas, parsing, and transformations.
Lessons
Store XML safely in UTF-8 and other encodings.
Character Encoding is easiest to learn by reading the example, changing it, and observing the result.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<note>
<to>Student</to>
<from>Teacher</from>
<body>Remember the XML declaration goes on line one.</body>
</note>Practice the Character Encoding example in a small scratch file, then explain what changed and why.