I have this Unicode sequence: \u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059
. How do I convert it into text?
$unicode = '\u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059';
I tried:
echo $utf8-decode(unicode);
and I tried:
echo mb_convert_encoding($unicode , 'US-ASCII', 'UTF-8');
and I tried:
echo htmlentities($unicode , ENT_COMPAT, "UTF-8");
but none of these functions convert the sequence into the corresponding Japanese text.