डीबी का उपयोग करने से पहले क्लाइंट एन्कोडिंग सेट करने का प्रयास करें।
mysql_query("SET NAMES 'utf8'");
यदि उपरोक्त काम नहीं करता है तो utf8 एन्कोड/डीकोड फ़ंक्शन का उपयोग करें:
<?
$string ="Étuit";
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<?
echo $string; // echo's '?tuit'
echo utf8_encode($string); // echo's 'Étuit'
?>