To convert the value of the specified string to its equivalent Unicode character, the code is as follows −
Example
using System;
public class Demo {
public static void Main(){
bool res;
Char ch;
res = Char.TryParse("10", out ch);
Console.WriteLine(res);
Console.WriteLine(ch.ToString());
}
}Output
This will produce the following output −
False
Example
Let us now see another example −
using System;
public class Demo {
public static void Main(){
bool res;
Char ch;
res = Char.TryParse("P", out ch);
Console.WriteLine(res);
Console.WriteLine(ch.ToString());
}
}Output
This will produce the following output −
True P