Regardless of what is in your source code, it seems that it is being inserted into the compiled binary encoded as Windows-1250 that is subsequently being interpreted as Windows-1252:
// What should be there
B ł ą d ć
U+0042 U+0142 U+0105 U+0064 U+0107
0x42 0xC5 0x82 0xC4 0x85 0x64 0xC3 0xA6 encoded with UTF-8
// What seems to be there in the binary
0x42 0xB3 0xB9 0x64 0xE6 encoded with Windows-1250
B ³ ¹ d æ if interpreted as Windows 1252
// What should be there
B ł ą d ć
U+0042 U+0142 U+0105 U+0064 U+0107
0x42 0xC5 0x82 0xC4 0x85 0x64 0xC3 0xA6 encoded with UTF-8
// What seems to be there in the binary
0x42 0xB3 0xB9 0x64 0xE6 encoded with Windows-1250
B ³ ¹ d æ if interpreted as Windows 1252
To copy to clipboard, switch view to plain text mode
Bookmarks