Answers for "print ascii num according to char in java"

8

how to convert an ascii number to character in java

// From Char to Ascii
char character = 'a';    
int ascii = (int) character;

// From Ascii to Char
int ascii = 65;
char character = (char) ascii;
Posted by: Guest on January-20-2021
1

ascii values to display certain characters in java

/*ASCII acronym for American Standard Code for Information Interchange.
It is a 7-bit character set contains 128 (0 to 127) characters.
It represents the numerical value of a character.
For example, the ASCII value of A is 65.*/
char a = 65, b = 66, c = 67;
System.out.println(a);
System.out.println(b);
System.out.println(c);

/* this is how you type ASCII values in java */
Posted by: Guest on December-31-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language