I am writing a parser for an xml file which will contains special characters, for example
<name>You & me ®</name>
The dom parser will, by default, parse this value to "You & me ®". However what I want the string is
You & me ®
Is there any way I can do this? Thanks