Change from latin1 to UTF8:
Change the Database standard:
ALTER DATABASE databasename CHARACTER SET utf8 COLLATE utf8_general_ci;
Convert the tables:
ALTER TABLE tablename CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
Source:
http://stackoverflow.com/questions/6115612/