Answers for "how to print alphabets using ascii value in java"

1

Java program to print alphabets using ascii values

// Java program to print alphabets using ascii values
public class PrintAlphabetUsingAscii 
{
   public static void main(String[] args) 
   {
      char ch = 'B';
      int ascii = ch;
      int castAscii = (int) ch;   
      System.out.println("ascii value of " + ch + " is: " + ascii);
      System.out.println("ascii value of " + ch + " is: " + castAscii);
   }
}
Posted by: Guest on February-19-2021
0

how to print ascii value in java

public class AsciiValue {

    public static void main(String[] args) {

        char ch = 'a';
        int ascii = ch;
        // You can also cast char to int
        int castAscii = (int) ch;

        System.out.println("The ASCII value of " + ch + " is: " + ascii);
        System.out.println("The ASCII value of " + ch + " is: " + castAscii);
    }
}
Posted by: Guest on June-21-2020

Code answers related to "how to print alphabets using ascii value in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language