0

How do I convert \u20B9 to the symbol in PHP?

I tried utf8_decode() but it is returning the same string.

Xorifelse
  • 7,708
  • 1
  • 24
  • 37
Codeformer
  • 1,802
  • 6
  • 26
  • 43

1 Answers1

1

You can use json_decode method because JSON directly supports the \uxxxx syntax

$unicodeChar = '\u20B9';
echo json_decode('"'.$unicodeChar.'"');

For more reference try this link - http://php.net/manual/en/function.json-decode.php

Manthan Dave
  • 2,099
  • 2
  • 16
  • 29