把这样一个16进制的字符串正常的在页面上显示出来,该怎么转换??
0B855802EDED244939A27F0F4A7B07360D94567DD1CFBDF9C88D1436FCCB906DECBE62E9B22D020D40637D5806FF6528

解决方案 »

  1.   

    看:
    http://community.csdn.net/Expert/topic/4845/4845427.xml?temp=.7797205
      

  2.   

    public static string UnicodeGetBytes(string strText)
    {
    byte [] byteData = System.Text.UnicodeEncoding.Unicode.GetBytes(strText);
    StringBuilder hexString = new StringBuilder( 2 * byteData.Length );         for ( int i = 0; i < byteData.Length; i++ )
    hexString.AppendFormat( "{0:X2}", byteData[i]);         return hexString.ToString();
    } 呵呵现成的