How to define character constants in C#?


Character literals are enclosed in single quotes. For example, 'x' and can be stored in a simple variable of char type. A character literal can be a plain character (such as 'x'), an escape sequence (such as '\t'), or a universal character (such as '\u02C0').

Let us see an example how to define a character constant in C# −

using System;

namespace Demo {
   class Program {
      static void Main(string[] args) {
         Console.WriteLine("Welcome!\t

");          Console.WriteLine("This is it!");          Console.ReadLine();       }    } }

Above, we have used the
and \t constants that are new-line and horizontal tab constants −

Console.WriteLine("Welcome!\t

"); Console.WriteLine("This is it!");

Updated on: 21-Jun-2020

179 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements