Character From Ascii Java Code Example


Example 1: 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);     } }

Example 2: how to add a number to the ascii value of a char in java

char a = 97+1; char b = 'a'+2; r = (char)(1+5)

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?