As I embark on the journey of creating a Samsung TV App, I find myself working within a strict system that only allows me to use JS and HTML5. One of the challenges I face is the need to send a JSON request to my web server to retrieve data for the emulator client. To simplify the representation of this data, I had initially planned to convert the JSON into XML. However, I encountered difficulties due to the presence of UTF-8 encoded data on the web, making it seemingly impossible to automate the decoding from JSON and encoding into XML.
Unlike what I have read in some posts and articles, the json_encode function creates HTML entities instead of representations like \uXXXXXX.
So, I find myself wondering, what steps can I take to address this issue?