I have several characters that aren't recognized properly. Characters like:
º á ó (etc..)
This means that the characters encoding is not utf-8 right? So, can you tell me what character encoding could it be please.
|
I have several characters that aren't recognized properly. Characters like: º á ó (etc..) This means that the characters encoding is not utf-8 right? So, can you tell me what character encoding could it be please. |
||||
|
|
|
read this first http://www.joelonsoftware.com/articles/Unicode.html There are two encodings: the one that was used to encode string and one that is used to decode string. They must be the same to get expected result. If they are different then some characters will be displayed incorrectly. we can try to guess if you post actual and expected results. |
|||
|
|
|
We don't have nearly enough information to really answer this, but the gist of it is: you shouldn't just guess. You need to work out where the data is coming from, and find out what the encoding is. You haven't told us anything about the data source, so we're completely in the dark. You might want to try If you know what the characters are meant to be and how they're represented in binary, that should suggest an encoding... but again, we'd need to know more information. |
|||||
|
|
I wrote a couple of methods to narrow down the possibilities a while back for situations just like this.
|
|||
|
|