I keep getting this warning in my code:
warning C4819: The file contains a character that cannot be represented in the current code page (0). Save the file in Unicode format to prevent data loss
I've done what was suggested in this question with advanced save options and saving in unicode without BOM, but that didn't work; I tried "Use Unicode Character Set" in the project properties, but that didn't work either. Why would it not be able to deal with unicode? For reference I have this line which sprints a unicode character:
sprintf(mac, "\x02\x60\x8c%c%c%c", (num >> 16) & 0xff, (num >> 8) & 0xff, num & 0xff);