Is there a function in PHP that can decode Unicode escape sequences like "\u00ed" to "í" and all other similar occurrences?

I found similar question here but is doesn't seem to work.

link|improve this question
feedback

4 Answers

up vote 24 down vote accepted

Try this:

function replace_unicode_escape_sequence($match) {
    return mb_convert_encoding(pack('H*', $match[1]), 'UTF-8', 'UCS-2BE');
}
$str = preg_replace_callback('/\\\\u([0-9a-f]{4})/i', 'replace_unicode_escape_sequence', $str);

In case it's UTF-16 based C/C++/Java/Json-style:

preg_replace_callback('/(?:\\\\u[0-9a-fA-Z]{4})+/', function ($v) {
    $v = strtr($v[0], array('\\u' => ''));
    return mb_convert_encoding(pack('H*', $v), 'UTF-8', 'UTF-16BE');
}, $string);
link|improve this answer
Where do I put "\u00ed"? – Docstero May 29 '10 at 10:31
1  
@Docstero: The regular expression will match any sequence of \u followed by four hexadecimal digits. – Gumbo May 29 '10 at 10:42
Warning: preg_replace_callback() [function.preg-replace-callback]: Compilation failed: PCRE does not support \L, \l, \N, \U, or \u at offset 1 – Docstero May 29 '10 at 10:48
@Docstero: Fixed that. – Gumbo May 29 '10 at 11:00
Thanks a lot, works perfectly!:) – Docstero May 29 '10 at 12:44
show 1 more comment
feedback

PHP6 function

<?php
header ('Content-Type: text/plain; charset=ISO-8859-2');
$encoded = unicode_encode ('\u0068\u0074\u0074\u0070', 'ISO-8859-2');
link|improve this answer
4  
Who's using PHP6 in production code? – Lightness Races in Orbit Jun 16 '11 at 15:05
I don't know, but there is normal in-built function in php5 – genesis Jun 16 '11 at 15:12
I suggest that that would be a more useful answer. – Lightness Races in Orbit Jun 16 '11 at 15:15
feedback
print_r(json_decode('{"t":"\u00ed"}')); // -> stdClass Object ( [t] => í )
link|improve this answer
feedback

You can try this as well:-

function dues($str)
{
    return html_entity_decode(
        preg_replace('/\\\\u([a-f0-9]{4})/i', '&#x$1;', $str),
        ENT_QUOTES, 'UTF-8'
    );
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.