轉換 Big5 字元
Big5 依傳入內碼轉成字元
1 2 3 4 5 6 7 8 9 10 11 12 13
| byte[] codeBytes = new byte[2];
codeBytes[0] = (byte)Convert.ToInt32("欲轉換內碼".Substring(0, 2), 16);
codeBytes[1] = (byte)Convert.ToInt32("欲轉換內碼".Substring(2, 2), 16);
Encoding big5 = Encoding.GetEncoding(950);
string result = big5.GetString(bytes);
|
轉換 Unicode 字元
Unicode 依傳入內碼轉成字元,與 Big5 轉換的方法雷同,只需調整內碼放置的順序
1 2 3 4 5 6 7 8 9 10 11 12 13
| byte[] bytes = new byte[2];
bytes[0] = Convert.ToByte(text.Substring(2, 2), 16);
bytes[1] = Convert.ToByte(text.Substring(0, 2), 16);
Encoding unicode= Encoding.Unicode;
string result = unicode.GetString(bytes);
|