HTML decoding is to convert back the encoded html content to original HTMl scheme.HTML decoding is required when you want to display HTML representation of soemthing in your document or web page.
$str = '<h1>Hello Brother ! </h1> '; echo html_entity_decode($str);
var str = "<h1>Hello Brother ! </h1> "; var result = HttpUtility.HtmlDecode(data);
You can easily decode HTML encoded string using this online tool. To decode just enter encoded html string into the textbox provided and press decode button.
You can also check similar HTML Encode tool.