码迷,mamicode.com
首页 > Web开发 > 详细

.net C#实现 中文转Unicode、Unicode转中文 及与js对应关系

时间:2014-05-17 19:29:51      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:style   class   code   c   ext   http   

中文转Unicode:HttpUtility.UrlEncodeUnicode(string str); 
转换后中文格式:"%uxxxx"  举例:"柳_abc123"  转换结果是:"%u67f3_abc123"

Unicode转中文1:HttpUtility.UrlDecode(string str);
str格式:"%uxxxx" ,举例:"%u67f3_abc123"

Unicode转中文2:Regex.Unescape(string str);
str格式:"\uxxxx" ,举例:"\u67f3_abc123"

参考:http://www.yongfa365.com/Item/Unicode-Chinese-UrlEncodeUnicode-Unescape.html

.net C#实现 中文转Unicode、Unicode转中文 及与js对应关系,布布扣,bubuko.com

.net C#实现 中文转Unicode、Unicode转中文 及与js对应关系

标签:style   class   code   c   ext   http   

原文地址:http://www.cnblogs.com/ycdx2001/p/3733307.html

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