How to read unicode source file in VC6.0 source window?

Viewed 165

I am restricted on a VC6.0 project, under Windows 7 (Chinese), and I want to read some cpp files that contains unicode characters. For example:

char const * const locales[] = {
"العربية",
"Български",
"繁體中文",
"简体中文",
"hrvatski",
"čeština",
"English",
"français",
"Deutsch",
"Ελληνικά",
"עברית",
"हिंदी",
"日本語",
"Қазақ",
"한국어‫",
"latviešu",
"lietuvių",
"bokmål",
"Português",
"română",
"Русский",
"slovenčina",
"Español",
"ไทย",
"Türkçe",
"українська",
"Tiếng Việt"
};

If the cpp file is saved as ASNI by notepad++, it will lose some contents like the graph: ASNI picture

If it is saved as Unicode by notepad++, it will become corrupted like:

unicode picture

How can I correctly show those characters in the IDE?

0 Answers
Related