I have a string which contains ASCII hex characters(=E4, =E5, =3D etc). I wonder how i can convert all these characters to normal characters(utf8?)
link
things ive tried that did not work:
header('content-type: text/plain;charset=utf-8');
utf8_encode($string);
rawurlencode($string);
html_entity_decode($string, ENT_COMPAT, 'UTF-8');
html_entity_decode($string, ENT_QUOTES, 'UTF-8');
iconv('UTF-8', 'ISO-8859-1//TRANSLIT//IGNORE', $string);
iconv('ISO-8859-1', 'UTF-8//IGNORE', $string);
I hope that someone can help me