『备注』&#x; 格式 的编码转换_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 『备注』&#x; 格式 的编码转换

『备注』&#x; 格式 的编码转换

 2017/9/29 20:43:18  InkFx  程序员俱乐部  我要评论(0)
  • 摘要:在很多网站(或者很多WebService),我们总能看到Ӓ&#A22A;这种格式的编码。如何将这种编码转换成实际文本,C#代码如下:1//各种幺蛾子网页图标请参见:https://dev.w3.org/html5/html-author/charref23stringstr="中国";4stringstr2="中国";5stringstr3="♣&
  • 标签:编码

在很多 网站(或者很多 WebService),

我们总能看到 Ӓ &#A22A;  这种格式 的编码

 

如何将这种编码 转换成 实际文本,C#代码如下:

 1 //各种 幺蛾子网页图标 请参见: https://dev.w3.org/html5/html-author/charref
 2 
 3             string str = "中国";
 4             string str2 = "中国";
 5             string str3 = "♣♣♣♣█";
 6 
 7 
 8             string decode = System.Web.HttpUtility.HtmlDecode(str);
 9             Console.WriteLine(decode);  //中国
10             decode = System.Web.HttpUtility.HtmlDecode(str2);
11             Console.WriteLine(decode);  //中国
12             decode = System.Web.HttpUtility.HtmlDecode(str3);
13             Console.WriteLine(decode);  //♣♣♣♣█    //有些 ♣ 格式, 识别不了.
14 
15             Console.WriteLine(System.Web.HttpUtility.HtmlEncode("我爱中国")); //不会被再次转义为 � 格式

 

最后的废话:

> ࢮ 这种编码 是 UTF8 网页编码时用到。

> 这类编码 和   ≶ &tg; 这类编码 基本是 一伙的。

> 但: ࢮ  这类编码 目测毫无价值。

 

上一篇: 印度科技行业里程碑:IBM印度员工总数超过美国那边 下一篇: 没有下一篇了!
发表评论
用户名: 匿名