I need to support Chinese in one of my application on Windows, the problem is that I need to support for Chinese Mandarin and I did not find any locale code for it, can you clarify whether Windows support Mandarin chinese or is there any alternate??
Share
Since the question is tagged C# and .NET 3.5 I’m assuming the following .NET-specifics apply.
There’s a hint on this page zh-Hans, zh-Hant and the “old” zh-CHS, zh-CHT
And from W3 I18N FAQ
I guess the key point is that Chinese Mandarin that you mentioned is a spoken dialect (for want of a better term), and Chinese (Simplified) is the ‘character set’ that is used to represent that spoken language ‘on paper’. LocaleId 0x0004 according to coobird’s link.
Other spoken languages (Cantonese?) are represented by different ‘character sets’ like Chinese (Traditional). If your application was going to Taiwan or Hong Kong you might use LocaleId 0x7C04.