Many databases use the Latin character encoding set by default, but this can cause problems depending on the application. With the following code you can change your database encoding set to UTF-8 also known as Unicode.
First of all, it is very important to make backups before you do this in live mode. Here's the query:
ALTER DATABASE DBNAME CHARACTER SET utf8 COLLATE utf8_general_ci;