convert from utf8 php code example
Example 1: utf8 encode php
$a = "Não";
echo utf8_encode($a);
Example 2: php convert string to utf8
utf8_encode ( string $data )
$a = "Não";
echo utf8_encode($a);
utf8_encode ( string $data )