Hi I am just beginner on Web Scraping and I am trying to scrape website that has Post Request Method. When I scrape the website I saw "�" instead of Turkish characters and I have no idea what to do to fix it :/
var client = new HttpClient();
var values = new Dictionary<string, string>
{
{ "city_id", "01" },
{ "district_id", "000" },
{"post","1" }
};
var content = new FormUrlEncodedContent(values);
var response = await client.PostAsync("url-address", content);
string responseString = await response.Content.ReadAsStringAsync();