I have a MYSQL database. Text is currently stored in charset latin1
, collation latin1_swedish_ci
. These are the defaults and it wasn't a problem back in the day when the database was originally created.
I want to switch over to UTF8 so the text encoding in the database matches out text encoding used elsewhere on the web site that uses the database.
My question is, what problems am I going to get when converting the data over and what should I be looking out for when I do. The majority of our text fits in plain acsii, but there are probably the occasional accented characters out there...
I think it would also be sensible to ask for any advice on the best way to go about changing the data.