using System;
using System.Web;
public class Program
{
public static void Main()
string xml = "<node>& This is an example of coded & content &<node>";
string encodedXml = HttpUtility.HtmlDecode(xml);
Console.WriteLine(encodedXml);
}