I am migrating my site into php mysqli from php mysql_* methods.
I had following code that did the job:
mysql_query(\"SET NAMES \'utf8\' COLLA
$con=mysqli_connect("localhost","admin","1234","web"); $con->set_charset("utf8");