摘要: /// /// 汉字转换为Unicode编码 /// /// 要编码的汉字字符串 /// Unicode编码的的字符串 public static string ToUnicode(string str) { byte[] bts = Encoding.Unicode.GetBytes(str); string r = ""; for (int i = 0; i /// 将Unicode编码转换为汉字字符串 //... 阅读全文
posted @ 2013-11-28 13:30 小川丶 阅读(349) 评论(0) 推荐(0) 编辑