I know following is the way to use unicode in C#
string unicodeString = \"\\u0D15\";
In my situation, I will not get the character code (
You want to use the char.ConvertFromUtf32 function.
string codePoint = "0D15"; int code = int.Parse(codePoint, System.Globalization.NumberStyles.HexNumber); string unicodeString = char.ConvertFromUtf32(code); // unicodeString = "ക"