I'm trying to create a rss-reader, which will be used on a dedicated platform.
I've got everything up and running, except for one.
I need to provide support for rss-feeds which aren't saved in UTF-8 format,
but do use "special characters" like "?".

Reading a XML file with these characters followed by a tag (like "<title>this
is an ?</title>") result in XML parsing error -9.
Reading a XML file with these characters NOT followed by a tag (like
"<title>this is an ? test</title>") results in NO error, it is just not showing
the special characters.

What are my options to solve this problem? Note that I can't change the
content of the XML-files! Also, I can't change the format in which these files
are saved. They are just taken from different news-sites etc.

thanks.