<?php $json = array( "Sample" => array( "context" => '我叫王豪' ) ); $encoded = json_encode($json); var_dump($encoded); $unescaped = preg_replace_callback('/\\\u(\w{4})/', function ($matches) { return html_entity_decode('&#x' . $matches[1] . ';', ENT_COMPAT, 'UTF-8'); }, $encoded); var_dump($unescaped);
You have javascript disabled. You will not be able to edit any code.