私は試した :
string decodedHtml = HttpUtility.HtmlDecode(html);
ここで、htmlはエンコードされたhtmlです。これは文字列をまったく変更しないようです。 HTMLはまだエンコードされています。
string s = System.Uri.UnescapeDataString(html);
このコードを使用できると思います。
HttpContext.Current.Server.UrlDecode(html)