How to convert Chinese characters to unicode encoding in PHP

藏色散人
Release: 2023-03-08 15:06:01
Original
3443 people have browsed it

php method to convert Chinese characters to Unicode encoding: first create a PHP sample file; then use the "function UnicodeEncode($str){...}" method to convert the specified Chinese characters into a Unicode string.

How to convert Chinese characters to unicode encoding in PHP

#The operating environment of this article: Windows7 system, PHP7.1, Dell G3 computer.

Let’s look at the PHP Unicode encoding method to convert Chinese into Unicode characters, such as converting Sina Weibo into a Unicode string. The code is as follows:

function UnicodeEncode($str){
    //split word
    preg_match_all('/./u',$str,$matches);
 
    $unicodeStr = "";
    foreach($matches[0] as $m){
        //拼接
        $unicodeStr .= "&#".base_convert(bin2hex(iconv('UTF-8',"UCS-4",$m)),16,10);
    }
    return $unicodeStr;
}
 
$str = "新浪微博";
echo UnicodeEncode($str);
Copy after login
Unicode编码输出字符串:“\u65b0\u6d6a\u5fae\u535a”
Copy after login

Recommended: "PHP Video Tutorial

The above is the detailed content of How to convert Chinese characters to unicode encoding in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template