I try to decode the word Mickaël here
using System;
using System.Net;
using System.Web;
public class Program
{
public static void Main()
{
string s1 = WebUtility.HtmlDecode("Mickaël") ;
string s2 = HttpUtility.HtmlDecode("Mickaël") ;
Console.WriteLine(s1);
Console.WriteLine(s2);
}
}
But I get this output :
Mickaël
Mickaël
So I need to know how can I decode this word properly ?