Reply to thread

Well, the reason is that your file is ANSI encoded.

With the special characters inside, you need to encode it UTF8.


So you need to modify your program to store the file with UTF8 encoding, or you open the file in an editor which can save files in UTF8 encoding. (e.g. Notepad++)


Top Bottom