vote up 0 vote down star

I have some xml that contains dodgy encoded characters e.g. ö

how can i convert the xml into a valid format.

a flash app is using the xml file but certain words haved dodgy characters in there. the flash app need to do various things with the text.

im using c# to generate the xml

flag

57% accept rate
I'm not understanding the flash tag - could you be more specific as to what language / etc? What attempts have you made so far? – JustLoren Oct 2 at 16:33

2 Answers

vote up 1 vote down

When you see stuff like é or ç, it is often the sign you are reading an UTF-8 encoded file (or data) with software thinking it is plain Ascii (or Latin1, etc.).

Just use the right decoder.

Note: it is a valid XML format: UTF-8 is even the default encoding of XML, IIRC.

link|flag
vote up 1 vote down

It's probably a strange encoding page that has been used (is it in a specific (human) language encoding?). if you're on linux, write file <filename> to find out what encoding it is using. Then you can use iconv or uconv to convert from whatver to UTF-8.

If file does not help, then it will be hard to "guess" the encoding the page is using. I know there are statistical algorithms that do this, but don't know much about them. Try using a hexadecimal file viewer, maybe that will also tell you stuff.

Maybe you can also post a snippet to see what may be going on.

FWIW

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.