Convert the value of the specified string to its equivalent Unicode character in C#


To convert the value of the specified string to its equivalent Unicode character, the code is as follows −

Example

 Live Demo

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 −

 Live Demo

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

Updated on: 11-Dec-2019

231 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements