Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

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 */
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #ascii #values #display #characters #java
ADD COMMENT
Topic
Name
5+3 =