直接输出就可以了啊,例如:
string a = "\u0068ello ";
string b = "world";
Console.WriteLine( a + b );
要不就写一个Unicode转成string 的通用方法
强制转换不行吗?
string str=Server.HtmlDecode(”\u3010\u7b2c\u56db\u5929“)
用 @"\u3010\u7b2c\u56db\u5929"; 试试,或者用string.Format();
System.Web.HttpUtility.UrlDecode("\u3010\u7b2c\u56db\u5929", Encoding.UTF8)