UNICODE转中文string s = "003100320033003400350036";
char[] cs = new char[s.Length/4]; 
for (int i=0,j=0; i < s.Length; i+=4,j++)
{
  cs[j] = (char)Convert.ToInt32(s.Substring(i,4),16);
}
string s2 = new string(cs);
MessageBox.Show(s2);