在网页上有以下字符串
“高通骁龙™ S4”
当我在我的 .net 代码中获取此字符串时,该字符串将转换为“Qualcomm Snapdragon™ S4”
字符“TM”变为 â„¢</p>
我如何将“â„¢”解码回“TM”
更新
以下是使用 webproxy 下载字符串的代码
wc is webproxy
wc.Headers.Add("Accept-Charset", "ISO-8859-1,utf-8");
string html = Server.HtmlEncode(wc.DownloadString(url));