UTF.COM.CN

查看汉字各种编码值

作者:佚名 | 来源:网络 | 添加时间:2006-02-23 15:06:59 | 人气:1516

查看汉字各种编码值

真有趣,gb2312和unicode是什么样,写到文件中也是什么样,而utf8是加上FFFE的头,然后转换成unicode写到文件中 

string s = "好";
   
   byte[] ascii = Encoding.ASCII.GetBytes(s); //1字节
   byte[] bigUnicode = Encoding.BigEndianUnicode.GetBytes(s);//2字节
   byte[] unicode = Encoding.Unicode.GetBytes(s);//2字节
   byte[] utf8 = Encoding.UTF8.GetBytes(s);//3字节
   byte[] utf7 = Encoding.UTF7.GetBytes(s);//5字节
   byte[] gb2312 = Encoding.GetEncoding("GB2312").GetBytes(s);//2字节

   FileStream fs1 = new FileStream(@"d:gb2312.txt",FileMode.Create);
   fs1.Write(gb2312,0,gb2312.Length);
   fs1.Close();

   FileStream fs2 = new FileStream(@"d:unicode.txt",FileMode.Create);
   fs2.Write(unicode, 0, unicode.Length);
   fs2.Close();

   FileStream fs3 = new FileStream(@"d:utf8.txt",FileMode.Create);
   fs3.Write(utf8,0,utf8.Length);
   fs3.Close();

责任编辑:冬天来了
【字号: 】【去论坛讨论】【发表评论】【打印本文】【告诉好友】【关闭窗口
网友评论(评论内容只代表网友观点,与本站立场无关!)

姓名:

验证码: 点击刷新