Hello,
I'm french. When I use CKEditor, every accents are replaced by this : é
So the word "Propriétés" is showing like that: "Propriétés"
Do you know how to fix this ?
Thank you!
I'm french. When I use CKEditor, every accents are replaced by this : é
So the word "Propriétés" is showing like that: "Propriétés"
Do you know how to fix this ?
Thank you!
Re: é
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Re: é
I'm polish and there's no problem with characters specific for my language.
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Accented characters again
Hi,
There are many posts on this subject but so far I haven't found what I'm looking for.
I want to provide some mini keyboards for these languages: French, German, Italian and Spanish for users who don't have the necessary characters on their keyboards. I use buttons to insert these characters.
If I use a French keyboard to type in an accented character there is no problem but if I do this: document.getElementById("txtArea").value = "è" I get this: �
However, if I replace <meta charset="utf-8"> with <meta charset="ISO-8859-1"> the accented characters are displayed correctly but all the posts I have read on this subject seem to indicate that I should not be using ISO-8859-1.
Have I missed something? Should I be doing this differently. Is it possible to insert characters in this way using utf-8?
Thanks for your time.
Accented characters again - solved (I think ...)
Re. the problem described above I think I have solved it by using:
document.getElementById("txtArea").value = String.fromCharCode(232);
This functions even if i use <meta charset="utf-8">
Maybe this will help someone else or maybe I'm the only dummy on this forum! :-)