I'm trying to get the string by webclient and it has japanese characters but it shows these kind of characters ,�^�p�Ǘ�.
var url= "http://www.itmedia.co.jp/im/articles/0609/14/news117.html";
using (var w = new WebClient())
{
w.Encoding = Encoding.UTF8;
var htmlData= w.DownloadString(url);
}
The value of json_data doesn't show Japanese Characters.
Can you enlighten me why it doesn't convert to Japanese characters even if I encode it to UTF-8?