Dion wrote:Here is my problem: When using FCKeditor to make email links, and writing subject and tekst in it aswell, if i use æøå (which i do) it changes them to Ã| Ã, and Ã¥ after saving, in the source code of the editor it has changed them to strange %C3%A5 (thats only å ), i have made several different pages where i have different document encoding, but the problem still persists which leads me to believe that the guys in charge of the system has configured it wrongly.
Here is what it does æ -> %C3%A6
The strange characters are UTF-8 encoded original characters. If your page that handles input cannot handle UTF-8 (e.g. it is an ISO-8859-1 page), you will end up with Ã| for æ, because the UTF-8 sequence for this character is C3 A6 and these byte codes encoded in Latin-1 represent à and | characters.
Make sure your codepage is set to 65001 (UTF-8) at the very beginning of your scripts.
Re: Editor changing æøå to strange symbols
http://dev.fckeditor.net/ticket/678
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
Re: Editor changing æøå to strange symbols
Make sure your codepage is set to 65001 (UTF-8) at the very beginning of your scripts.
Andre
Re: Editor changing æøå to strange symbols
encodeURIencodeURIComponent
escape