答案1
经过国家语言支持 (NLS) API 参考,中文(台湾)LCID/文化标识符是0x0404
(=1028
十进制)。OEM
代码页以及ANSI
代码页是950
。您可以使用 PowerShell 命令来确认这一事实
Get-Culture | Format-Custom -Property TextInfo
或者,如果是中国(台湾)不是您的系统区域设置:
[System.Globalization.CultureInfo]::GetCultureInfo(0x0404) | `
Format-Custom -Property TextInfo
输出:
class CultureInfo
{
TextInfo =
class TextInfo
{
ANSICodePage = 950
OEMCodePage = 950
MacCodePage = 10002
EBCDICCodePage = 500
LCID = 1028
CultureName = zh-TW
IsReadOnly = True
ListSeparator = ,
IsRightToLeft = False
}
}
另一篇 Microsoft 文章将代码页950
称为繁体中文Big5。