\u9a8c\u8bc1\u5931\u8d25\uff0c\u8bf7\u6309\u7167\u5408\u89c4\u7684\u65b9\u5f0f\u8fdb\u884c\u63d0\u4ea4
这样的就是汉字的unicode编码了。。
转换函数:
public static string unicodetogb(string text)
{
System.Text.RegularExpressions.MatchCollection mc = System.Text.RegularExpressions.Regex.Matches(text, "\\\\u([\\w]{4})");
string a = text.Replace("\\u", "");
char[] arr = new char[mc.Count];
for (int i = 0; i < arr.Length; i++)
{
arr[i] = (char)Convert.ToInt32(a.Substring(i * 4, 4), 16);
}
string c = new string(arr);
return c;
}