3v4l.org

run code in 300+ PHP versions simultaneously
<?php function unicode_decode($str){ return preg_replace("/\\\u([0-9A-F]{4})/ie", "iconv('utf-16', 'utf-8',hex2str(\"$1\"))", $str); } function hex2str($hex) { $r = ''; for ($i = 0; $i < strlen($hex) - 1; $i += 2) $r .= chr(hexdec($hex[$i] . $hex[$i + 1])); return $r; } $var="\u092e\u0941\u0930\u0932\u0940 \u0938\u093e\u0930"; $var = unicode_decode($var); echo $var; ?>

preferences:
42.24 ms | 402 KiB | 5 Q