Forum Moderators: open
So, for instance:
<book>
<title>The Big Book of <XML> & &agrave;cc&eacute;nted char&agrave;ct&egrave;rs</title>
</book>
OR:
<book>
<title><![CDATA[The Big Book of <XML> & àccénted charàctèrs]]></title>
</book>
the CDATA is a far better solution
Unless you know that the user-entered data is safe, like it's only EVER going to be an integer or alphanumeric string, then treat it as CDATA and encapsulate it accordingly.