2014
Jan
30

PHP Array 在经过 json_encode 之后,就会把中文转成 Unicode 的代码,看到那些代码却不知道代表什么意思,这个问题,对於中文网站的开发者来说,是非常的困扰,所以我写了一个简单的工具,可以将 Unicode 转成正常的 ASCII 中文文字。

Unicode Example
  1. \u8a55\u5206\u6210\u529f

Tool DEMO

请输入 Unicode:




![转换结果]

PHP Unicode to Ascii

Example
  1. $str = "\u6210\u529f";
  2. $str = preg_replace('/\\\u([0-9a-f]+)/i', '&#x$1;', $str);
  3. echo html_entity_decode($str, 0, 'UTF-8');

回應 (Leave a comment)