• 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 ();
        }
    

      

  • 相关阅读:
    WebApi整合Unity容器实现IOC编程
    用户登录
    Mvc验证码
    代理模式 实现aop
    装饰器模式,实现aop
    Redis
    图片缩放
    递归操作文件
    几种文件的读写方式
    C#WebApi自动生成文档
  • 原文地址:https://www.cnblogs.com/XuPengLB/p/8677216.html
Copyright © 2020-2023  润新知