Skip to main content

Print ASCII Character

       
         Console.WriteLine("ASCII Character");
       
            for (int c = 1; c <= 256; c++)
            {
                Console.WriteLine(c + ": " + Convert.ToChar(c) + "\n");
                Console.ReadLine();
            }

Output:



Comments