I have a list with German text that includes special characters like Ä, Ö, etc.
I develop my website using chrome, which takes care of these characters automatically, but some of them can't be displayed in the FireFox browser.
After trying to use mb_convert_encoding( STRING, 'utf-16', 'utf-8' )
to encode my string, it works well in FireFox, but not in Chrome anymore (The characters are displayed like this: �). I already used charset="UTF-8"
in my <meta>
tag.
Is there a way to fix this for both browsers?
Thanks