I have seen the following warning recently through my VS2010.
Warning 21 warning C4819: The file contains a character that cannot be represented in the current code pag
You can use Notepad++ to find all Unicode characters in a file using a regular expression:
[^\x00-\x7F]
in the Find what box and hit the Find Next button to see what you get.After you find the Unicode character(s), you can remove/change them, change the encoding back to ANSI, and save the file.
You don't have to use Notepad++, of course. The RegEx will work in other text editors, e.g., Sublime Text.