I receive a text like this in my program
Ký Sinh Trùng  - (2019)
Which is wrong and should be as follows
Ký Sinh Trùng - (2019)
I used the following code but nothing happened
byte[] bytes = Encoding.Default.GetBytes(nodes.InnerText);
var myString = Encoding.UTF8.GetString(bytes);
how can i fix this?
Update: Full Code:
HtmlWeb Webget = new HtmlWeb();
var docx = await Webget.LoadFromWebAsync(@"https://isubtitles.org/search?kwd=parasite");
var items = docx.DocumentNode.SelectNodes("//div[@class='movie-list-info']");
foreach (var node in items)
{
var name = node?.SelectSingleNode(".//div/div[2]/h3/a");
var xxxx = name?.InnerText;
byte[] bytes = Encoding.UTF8.GetBytes(xxxx);
var myString = Encoding.UTF8.GetString(bytes);
Debug.WriteLine(myString);
return;
}