® gets converted to ® in Python while parsing XML

paldo

New Member
My RSS feed ontains:\[code\]<title><![ CDATA[HBO Wins 19 Emmy? Awards, The Most of Any Network This Year]]></title>\[/code\]Now I am parsing RSS and then assigning the title to title as below:\[code\] for item in XML.ElementFromURL(feed).xpath('//item',namespaces=NEWS_NS): title = item.find('title').text Log("Title :"+title)\[/code\]and when I am checking the out put or the log file then I see the title as below:\[quote\] HBO Wins 19 Emmy?? Awards, The Most of Any Network This Year.\[/quote\]? gets converted to ?? . Any I tried using HTML parser but no use.
 
Top