I had the same problem. which I solved with:
if you have already created your table, you need to change the character set as:
alter table <table name> convert to character set utf8 collate utf8_general_ci.
your table character set is set to latin_swedish by default.
You may also encounter some problems when retrieving data and displaying it on your page. To do this, include: mysql_set_charset('utf8') just below the line where you connected your database. eg:
mysql_connect('localhost','root',''); mysql_select_db('my db'); mysql_set_charset('utf8');
freerunner
source share