using System;
using System.Net;
public class Program
{
public static void Main()
var test = WebUtility.HtmlEncode("Ë");
Console.WriteLine(test);
}