c中文和unicode编码互相转换//中文轉為UNICODEstringstr=中文;stringoutStr=;if(!string.IsNullOrEmpty(str)){for(inti=0;istr.Length;i++){//將中文轉為10進制整數,然後轉為16進制unicodeoutStr+=\\u+((int)str[i]).ToString(x);}}//UNICODE轉為中文(最直接的方法Regex.Unescape(input);)stringstr=\\u4e2d\\u6587;stringoutStr=;if(!string.IsNullOrEmpty(str)){string[]strlist=str.Replace(\\,).Split('u');try{for(inti=1;istrlist.Length;i++){//將unicode轉為10進制整數,然後轉為char中文outStr+=(char)int.Parse(strlist[i],System.Globalization.NumberStyles.HexNumber);}}catch(FormatExceptionex){outStr=ex.Message;}}