zoukankan      html  css  js  c++  java
  • Unicode转字符串

    /// <summary>
            /// Unicode转字符串
            /// </summary>
            /// <returns>The to string.</returns>
            /// <param name="unicode">Unicode.</param>
            public static string UnicodeToString(this string unicode)
            {
                return System.Text.RegularExpressions.Regex.Unescape(str);
            }
    

      

    /// <summary>
        /// 字符串转Unicode码
        /// </summary>
        /// <returns>The to unicode.</returns>
        /// <param name="value">Value.</param>
        private string StringToUnicode(string value)
        {
            byte[] bytes = Encoding.Unicode.GetBytes (value);
            StringBuilder stringBuilder = new StringBuilder ();
            for (int i = 0; i < bytes.Length; i += 2) {
                // 取两个字符,每个字符都是右对齐。
                stringBuilder.AppendFormat ("u{0}{1}", bytes [i + 1].ToString ("x").PadLeft (2, '0'), bytes [i].ToString ("x").PadLeft (2, '0'));
            }
            return stringBuilder.ToString ();
        }
    

      

  • 相关阅读:
    Golang学习
    Golang学习
    基础知识
    Golang学习
    基础知识
    hyper-v server 2016安装,客户端远程管理
    inotifywait命令
    CENTOS 7发送邮件测试
    NFS学习
    awk命令
  • 原文地址:https://www.cnblogs.com/XuPengLB/p/8677216.html
Copyright © 2011-2022 走看看