When I use json_encode to encode my multi lingual strings , It also changes special characters.What should I do to keep them same .
For example
<
First, use json_encode() to encode the string and save it in a variable.
json_encode()
Then simply use preg_replace() to replace all \uxxxx with unicode again.
preg_replace()