Decoding Ascii to string UTF8
I have trouble on decoding a string like  !"#$%, somehow decoding with php function is not working... it might have to do something with the UTF8.
$email = explode('&#',$email);
foreach($email as $list)
{
if (!empty($list))
{
$string .= $this->unichr($list);
}
}
if (!empty($string))
{
$string = str_replace('mailto:','',$string);
}
function unichr($u) {
return mb_convert_encoding('&#' . intval($u) . ';', 'UTF-8', 'HTML-ENTITIES');
}