Our mysql database shows Î Î¿Î»Ï Î³Î»Ï…ÎºÏŒÏ in place of greek characters while sending data from an emulator to a mysql database. Other characters are left ok.
An excellent introduction about using UTF8 with PHP and Mysql can be found in this blog. The main points are:
default_charset = "utf-8";set names UTF-8;I guess you are missing point 3.
In your PHP script, you should do something like this (untested):
$handler = new PDO('mysql:host=localhost;dbname=database',
'username',
'password',
array(PDO::MYSQL_ATTR_INIT_COMMAND =>
'SET NAMES utf8;SET CHARACTER SET UTF8;'));