How can I convert a Unicode value to its equivalent string?
For example, I have \"రమెశ్\", and I need a function that accepts this Unicode value and returns a string
UTF8Encoding Class
UTF8Encoding uni = new UTF8Encoding(); Console.WriteLine( uni.GetString(new byte[] { 1, 2 }));