This question looks embarrasingly simple, but I haven't been able to find an answer.

What is the PHP equivalent to the following C# line of code?

string str="\u1000";

(That creates a string with a single unicode character whose "unicode numeric value" is 0x1000 (decimal 4096)).

That is. In PHP, How can I create a string with a single unicode character whose "unicode numeric value" is one that I know?

Thank you.

link|improve this question

67% accept rate
@diEcho: that's only for matching Unicode characters, but the OP wants to create to those characters. – Stefan Gehrig May 19 '11 at 12:21
this may help: randomchaos.com/documents/?source=php_and_unicode – diEcho May 19 '11 at 12:24
feedback

2 Answers

up vote 10 down vote accepted

Because JSON directly supports the \uxxxx syntax the first thing that comes into my mind is:

$unicodeChar = '\u1000';
echo json_decode('"'.$unicodeChar.'"');

Another option would be to use mb_convert_encoding()

echo mb_convert_encoding('က', 'UTF-8', 'HTML-ENTITIES');

or make use of the direct mapping between UTF-16BE (big endian) and the Unicode codepoint:

echo mb_convert_encoding("\x10\x00", 'UTF-8', 'UTF-16BE');
link|improve this answer
Stefan! Your first option (the one with the json_decode()) works!! :-) Thank you. – Telaclavo May 19 '11 at 12:40
JSON is not JavaScript. – Gumbo May 19 '11 at 12:43
@Gumbo: I know that but it doesn't make any difference in here. Javascript as well as JSON support the \uxxxx Unicode syntax so you can use json_decode to work on an artifically created JSON string representation. I changed the wording though to have that clarified. – Stefan Gehrig May 19 '11 at 12:48
1  
Ok, so the strict formulation of one answer to my question is: $str=json_decode('"\u1000"'); Thank you. – Telaclavo May 19 '11 at 15:48
feedback

PHP does not know these Unicode escape sequences. But as unknown escape sequences remain unaffected, you can write your own function that converts such Unicode escape sequences:

function unicodeString($str, $encoding=null) {
    if (is_null($encoding)) $encoding = ini_get('mbstring.internal_encoding');
    return preg_replace_callback('/\\\\u([0-9a-fA-F]{4})/u', create_function('$match', 'return mb_convert_encoding(pack("H*", $match[1]), '.var_export($encoding, true).', "UTF-16BE");'), $str);
}

Or with an anonymous function expression instead of create_function:

function unicodeString($str, $encoding=null) {
    if (is_null($encoding)) $encoding = ini_get('mbstring.internal_encoding');
    return preg_replace_callback('/\\\\u([0-9a-fA-F]{4})/u', function($match) use ($encoding) {
        return mb_convert_encoding(pack('H*', $match[1]), $encoding, 'UTF-16BE');
    }, $str);
}

Its usage:

$str = unicodeString("\u1000");
link|improve this answer
Gumbo, thank you. It may work, but I prefer the more compact solution mentioned above. – Telaclavo May 19 '11 at 15:51
feedback

Your Answer

 
or
required, but never shown

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