Asha
Asha

Reputation: 11232

Supporting Polish language without compiling with unicode character set

I have a legacy C++ application which is not compiled with unicode character set. This application is able to support some European languages such as German, Portuguese etc. Now there is a requirement to support Polish language. My understanding is that these characters wont fit in ASCII character range and there is no way to support it other than migrating the application to use unicode character sets. Is this understanding correct? Is there any alternatives?

Upvotes: 0

Views: 437

Answers (1)

MSalters
MSalters

Reputation: 179991

German won't fit in ASCII either (and I suspect the same applies to Portugese.). I suspect that you're actually using CP1252. A Polish Windows install will be running CP1250 instead. This gives you the missing characters.

Upvotes: 2

Related Questions