以下网址:
使用包含一些奇怪字符的字符串进行响应(您可以浏览并查看) 我试图把它转换成一个真正的字符串(我知道它应该是希伯来文)。
我的代码:
string html = client.DownloadString(SITE_URL).Replace("\"", string.Empty);
答案 0 :(得分:5)
将webclient的编码设置为UTF-8:
WebClient client = new WebClient();
client.Encoding = System.Text.Encoding.UTF8;
string html = client.DownloadString(SITE_URL).Replace("\"", string.Empty);