I have my data in this format: U+597D or like this U+6211. I want to convert them to UTF-8 (original characters are 好 and 我). How can I do it?

link|improve this question

67% accept rate
Is your original data UTF-16 code units, or Unicode code points? – Thanatos Nov 26 '09 at 22:02
They are Unicode code points from Unihan database. – Anthony Nov 26 '09 at 22:03
feedback

3 Answers

up vote 8 down vote accepted
$utf8string = html_entity_decode(preg_replace("/U\+([0-9A-F]{4})/", "&#\\1;", $string), ENT_NOQUOTES, 'UTF-8');

is probably the simplest solution.

link|improve this answer
That results in HTML entity, not a UTF8 character :) – Dor Nov 26 '09 at 21:57
Not in my tests it doesn't. It converts the code as shown in the Q to a HTML entity... THEN decodes the html entity. – Mez Nov 26 '09 at 22:12
The same problem here, I get HTML entity... – Anthony Nov 26 '09 at 22:27
1  
Your regex won't match all code points - you need {4,5} to match characters higher than U+FFFF. – Thanatos Nov 26 '09 at 22:32
7  
The replacement string should read: "&#x\\1;" – Thanatos Nov 27 '09 at 0:04
show 5 more comments
feedback
function utf8($num)
{
    if($num<=0x7F)       return chr($num);
    if($num<=0x7FF)      return chr(($num>>6)+192).chr(($num&63)+128);
    if($num<=0xFFFF)     return chr(($num>>12)+224).chr((($num>>6)&63)+128).chr(($num&63)+128);
    if($num<=0x1FFFFF)   return chr(($num>>18)+240).chr((($num>>12)&63)+128).chr((($num>>6)&63)+128).chr(($num&63)+128);
    return '';
}

function uniord($c)
{
    $ord0 = ord($c{0}); if ($ord0>=0   && $ord0<=127) return $ord0;
    $ord1 = ord($c{1}); if ($ord0>=192 && $ord0<=223) return ($ord0-192)*64 + ($ord1-128);
    $ord2 = ord($c{2}); if ($ord0>=224 && $ord0<=239) return ($ord0-224)*4096 + ($ord1-128)*64 + ($ord2-128);
    $ord3 = ord($c{3}); if ($ord0>=240 && $ord0<=247) return ($ord0-240)*262144 + ($ord1-128)*4096 + ($ord2-128)*64 + ($ord3-128);
    return false;
}

utf8() and uniord() try to mirror the chr() and ord() functions on php:

echo utf8(0x6211)."\n";
echo uniord(utf8(0x6211))."\n";
echo "U+".dechex(uniord(utf8(0x6211)))."\n";

//In your case:
$wo='U+6211';
$hao='U+597D';
echo utf8(hexdec(str_replace("U+","", $wo)))."\n";
echo utf8(hexdec(str_replace("U+","", $hao)))."\n";

output:

我
25105
U+6211
我
好
link|improve this answer
FYI: sscanf($string = 'U+597D', 'U+%x', $codepoint) – hakre May 11 at 20:44
feedback

With the aid of the following table:

http://en.wikipedia.org/wiki/UTF-8#Description

can't be simpler :)

Simply mask the unicode numbers according to which range they fit in.

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.