I need to print the following string but got another output in php.
$test = "?s'd – b]zel/";
echo $test;
and the output is:: ?s'd – b]zel/ I need the same string on output. The character '-' is special character in Nepali font. But, it's showing – instead of –. So, what will be the solution??
EDIT when i used json_encode($test), I got output "?s'd \u2013 b]zel/". But I dont need unicode, I need "?s'd – b]zel/" as output. What should I do??