meta charset windows-1252 vs UTF-8
- UTF-8 is generally approved standard, which works everywhere. Windows-any encoding is Windows-specific and not guaranteed to work on any machine. Also, take a look here and here
- If you want to change the encoding of a file, you can do it in many ways. You can look for encoding type in your text editor/IDE or use the following command (not tested, it should work though):
iconv -f WINDOWS-1252 -t UTF-8 filename.txt