Unicode characters from JSON.stringify to real unicode characters

lerolande

New Member
I use \[code\]JSON.stringify()\[/code\] function to stringify JS objects for AJAX sending to PHP.The problem arises when JSON.stringify function encodes unicode characters to format \[code\]\uxxxx\[/code\] (eg. \[code\]\u000a\[/code\]). My question is how to convert those characters to regular unicode characters in PHP?
 
Back
Top