In a MySql database I have a column that contains a varchar
string encoded with ISO-8859-1 (latin1_swedish_ci).
When the string is not latin1
MySql stores it, for example, as "à¸à¸µà¹à¸à¸."
Using Java I need to extract it and convert it to UTF-8.
Do you know how can I do it?
Thanks