I have the following output from strace and i want to convert it to UTF-8 using PHP:
R\00f6dhakev\00e4gen 4
R\00e4ntm\00e4starv\00e4gen 24
K\00d8BENHAVN
The above strings is UTF 16 HEX i think.
|
|
|
|
|
|
|
Try this:
|
||
|
|
|
Found that the following function works: function utf8_urldecode($str) { $str = str_replace("\00", "%u00", $str); $str = preg_replace("/%u([0-9a-f]{3,4})/i","\1;",urldecode($str)); return html_entity_decode($str,null,'UTF-8'); } Some parts from http://us2.php.net/manual/en/function.urldecode.php |
||
|
|