UTF-8 Issues With Tinymce?
I am experiencing some issues with curly quotes and apostrophes when pasting from a word document into tincymce hmtl editor, for some reason it converts these characters into Â, �
Solution 1:
Instead of ’
, you were expecting ’
, correct? That's Mojibake, which usually implies that you failed to declare the table column to be CHARACTER SET utf8
.
Do not use utf8_encode()
.
Post a Comment for "UTF-8 Issues With Tinymce?"