如何将UTF-8字符转换为字符串?

时间:2012-11-03 12:54:09

标签: c# html utf-8 converter

以下网址:

  

http://www.thecage.co.il/online_users.json.js?r=

使用包含一些奇怪字符的字符串进行响应(您可以浏览并查看) 我试图把它转换成一个真正的字符串(我知道它应该是希伯来文)。

我的代码:

string html = client.DownloadString(SITE_URL).Replace("\"", string.Empty);

1 个答案:

答案 0 :(得分:5)

将webclient的编码设置为UTF-8:

WebClient client = new WebClient();
client.Encoding = System.Text.Encoding.UTF8;
string html = client.DownloadString(SITE_URL).Replace("\"", string.Empty);