How can I show any character encoding in a HTML text area?
I currently take in a users HTML page via direct input (textarea) and then I parse it by changing href links to something else via PHP and then I echo out the parsed HTML back to the user on a different page in a textarea.
However, I get square characters for chinese characters and I am wondering how I can handle this and do this for all languages or character encoding?
As a side note, I store the parsed HTML in my DB base64_encoded which works well, this was achieved with the help of SO with a previous question I had.
Thanks all for any help on how I can fix this.