C#-获取字符的GBK编码值

2021-07-17 00:20

阅读:595

标签:div   ret   parse   post   bytes   down   return   numbers   markdown   


public static int GetGBKValue(string key)
 {
            byte[] gbk = Encoding.GetEncoding("GBK").GetBytes(key);
            string code = "";
            foreach (byte b in gbk)
            {
                code += string.Format("{0:X2}", b);
            }
            int gbkValue = int.Parse(code, NumberStyles.HexNumber);
            return gbkValue;
 }

C#-获取字符的GBK编码值

标签:div   ret   parse   post   bytes   down   return   numbers   markdown   

原文地址:https://www.cnblogs.com/liguobao/p/8169098.html


评论


亲,登录后才可以留言!