2012-11-03 61 views
0

以下網址:如何將UTF-8字符轉換爲字符串?

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

與一些奇怪的字符的字符串(你可以瀏覽和看) 我試圖將其轉換爲一個真正的串做出響應(我知道這應該希伯來語)。

我的代碼:

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

看起來不錯給我。有些希伯來人,就是這樣。 – Oded

+0

難道你沒有看到{「UserName」:「×ורי×ן」,? @Oded – benams

+0

沒有。我在希伯來文中看到了諸如「維羅尼卡」(Veronique)之類的東西。看看你的瀏覽器頁面的語言設置。 – Oded

回答

5

設置Web客戶端的編碼設置爲UTF-8:

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