xml replace special characters

Hi,

I have to read a RSS feed from twitter and show it’s content.

I success get it using WWW.
But special characters are converted in ISO Latin1 code (example : é = #233; )

How can i convert them ?

I’m using Unity Iphone 1.5

thanks

The System.Text classes in the Mono API can convert a stream of bytes into a particular text encoding (I imagine you want UTF8). Unity’s WWW class has a bytes property that gives you the raw binary data.

thanks