PHP if the Utf-8 code corresponding to the Chinese character display

Source: Internet
Author: User
That's what I wrote. Unicode code generates UTF-8 corresponding code value
//3字节 1110xxxx 10xxxxxx 10xxxxxx $unicode = '\u611f'; //中文感Unicodefunction unicode_utf8($unicode){    $decval = intval(hexdec($unicode));    $left = dechex( 0xe0 | ($decval >> 12));    $mid  = dechex( 0x80 | (($decval >> 6) & 0x3f));    $right= dechex( 0x80 |  ($decval & 0x3f));    return $left.$mid.$right;}echo $utf8 = unicode_utf8($unicode);echo "\n";

?>

Output: e6849f
The question is how to UTF-8 code e6849f corresponding Chinese characters ' sense ' display??

Reply content:

That's what I wrote. Unicode code generates UTF-8 corresponding code value

//3字节 1110xxxx 10xxxxxx 10xxxxxx $unicode = '\u611f'; //中文感Unicodefunction unicode_utf8($unicode){    $decval = intval(hexdec($unicode));    $left = dechex( 0xe0 | ($decval >> 12));    $mid  = dechex( 0x80 | (($decval >> 6) & 0x3f));    $right= dechex( 0x80 |  ($decval & 0x3f));    return $left.$mid.$right;}echo $utf8 = unicode_utf8($unicode);echo "\n";

?>

Output: e6849f
The question is how to UTF-8 code e6849f corresponding Chinese characters ' sense ' display??

$unicode = '\u611f'; //中文感Unicode// Unicode转换utf8函数function unicode_to_utf8($unicode) {    $utf8_str = '';    $code = intval(hexdec($unicode));    //这里注意转换出来的code一定得是整形,这样才会正确的按位操作    $ord_1 = decbin(0xe0 | ($code >> 12));    $ord_2 = decbin(0x80 | (($code >> 6) & 0x3f));    $ord_3 = decbin(0x80 | ($code & 0x3f));    $utf8_str = chr(bindec($ord_1)) . chr(bindec($ord_2)) . chr(bindec($ord_3));    return $utf8_str;}echo unicode_to_utf8($unicode);?>
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.