using (WebClient client = new WebClient())
{
client.Encoding = Encoding.UTF8;
string v=client.DownloadString("https://feed.mix.sina.com.cn/api/roll/get?pageid=155&lid=1686&num=1&page=1&callback=feedCardJsonpCallback&_=" + DateTime.Now.ToString("HHmmss"));
string v1=Regex.Split(v, ",\"title\":\"")[1].Split('\"')[0];
Encoding utf8 = Encoding.UTF8;
Encoding window1252 = Encoding.Default;
byte[] postBytes = window1252.GetBytes(v1);
string decodedText = utf8.GetString(postBytes);
MessageBox.Show(decodedText);
}
v1 is supposed to be like this: "\u8428\u5c14\u74e6\u591a\u7387\u5148\u201c\u5403\u8783\u87f9\u201d \u6bd4\u7279\u5e01\u5c06\u5f00\u542f\u62c9\u7f8e\u201c\u540e\u7f8e\u5143\u65f6\u4ee3\u201d\uff1f"
I wanted to convert it to readable chinese character but I keep failing to do so