My UTF-8 strings have been converted to ISO-8859-1 strings in the following way:
- Characters 0 to 127 (hex 0x7F) have been left intact (0-9,a-z,A-Z, etc).
- Characters 128 and above have been converted to two ISO-8859-1 characters:
é
becomesé
,Ͷ
becomesͶ
, etc.
Is there a way to undo this conversion, so that é
becomes é
for example?