I have string with Code Decimal
and want convert like this:
Current sting:
24⃧ Guage Rake;
And want to convert like this:
24" Guage Rake
I have tried with this but not getting proper result:
$string = "hello⃧";
htmlspecialchars_decode($string, ENT_NOQUOTES);
Any Idea?
Thanks