Hi Folks,

Suppose that these hex bytes:

        C3 83 C2 B1 

show up in a message and the message contains no hint what its encoding is. 

Perhaps it is 8859-1, in which case the message consists of four 1-byte 
characters: 

C3 = Ã
83 = the “no break here” character
C2 = Â
B1 = ±

Perhaps it is UTF-8, in which case the message consists of two 2-byte 
characters:

C383 = 쎃
C2B1 = 슱

Or, perhaps it is some other encoding.

What does one do in such a situation?

/Roger


Reply via email to