码迷,mamicode.com
首页 > 其他好文 > 详细

汉字转为Unicode编码

时间:2014-08-21 19:01:44      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   div   amp   log   

   protected string GetUnicode(string text)
    {
        string result = "";
        for (int i = 0; i < text.Length; i++)
        {
            if ((int)text[i] > 32 && (int)text[i] < 127)
            {
                result += text[i].ToString();
            }
            else
                result += string.Format("\\u{0:x4}", (int)text[i]);
        }
        return result;
    }

 

汉字转为Unicode编码,布布扣,bubuko.com

汉字转为Unicode编码

标签:style   blog   color   os   for   div   amp   log   

原文地址:http://www.cnblogs.com/haozhenjie819/p/3927805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!