I am developing an android project. I am using dom parser to parse the xml file. Issue is my xml file contains html numbers like ½ (semicolon will come in the end of every char code)
for example
<quote>We “love” our nation</quote>
which is nothing but
<quot>We "love" our nation</quote>
I am not able to parse this html number in dom parse, when I try to get the node value, I am getting null.
Can anyone tel me how to parse this html character codes?
or
How to convert this html char code as either text char code or unicode char set in my xml feed?