I have a latin1 table (latin1_swedish_ci) that works great for strings like "SÉRIE TÉLÉVISÉE" - but when I use a string like "ẼFINI", it changes the first character to Ẽ
. Now this ultimately works (it is displayed as "Ẽ") but I'm just curious what other characters would get this treatment?
The impact is that my string runs out of space because of the extra characters used, so this question isn't entirely academic. I'm considering going to UTF8, i.e.
ALTER TABLE description CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;