Convert HTML codes to plain text

.net, asp.net, c#, string

Solution

System.Web.HttpUtility.HtmlDecode("Col´gio");

Problem

I've a string for example like this: ``` Col´gio ``` How can I convert it to: ``` Colégio ``` Without having to do a replace for all the html codes

Original source

Related problems