I get the html-content and show it in a TextBox, but the "ä" is a <?>
.
It's like Windows doesn't get the ä...
I get the Htmlcontent like this:
public async Task<string> MakeWebRequest()
{
HttpClient http = new HttpClient();
HttpResponseMessage response = await http.GetAsync("***URL***");
return await response.Content.ReadAsStringAsync();
}
How can I get a match in regex to the ä, which Looks like an "?" ?