I have a website, and I can send my Turkish characters with jQuery in Firefox, but Internet Explorer doesn’t send my Turkish characters.
I looked at my source file in notepad, and this file’s code page is ANSI.
When I convert it to UTF-8 without BOM and close the file, the file is again ANSI when I reopen.
How can I convert my file from ANSI to UTF-8?
Regarding this part:
The easiest solution is to avoid the problem entirely by properly configuring Notepad++.
Try
Settings->Preferences->New document->Encoding-> chooseUTF-8without BOM, and checkApply to opened ANSI files.That way all the opened ANSI files will be treated as UTF-8 without BOM.
For explanation what’s going on, read the comments below this answer.
To fully learn about Unicode and UTF-8, read this excellent article from Joel Spolsky.