Q:

Java Program to Print ASCII Value of a Character

0

Java Program to Find ASCII Value of a character or Java Program to Print ASCII Value of All Alphabets or Program to Print Character to ASCII Value in Java or Program to print Ascii values of characters from A to Z or How to convert String or char to ASCII values in Java or How to convert character to ASCII in Java or Find out the ASCII value from character in Java Example.


ASCII: 
ASCII was developed from telegraph code. Its first commercial use was as a seven-bit teleprinter code promoted by Bell data services. Work on the ASCII standard began on October 6, 1960, with the first meeting of the American Standards Association's (ASA) (now the American National Standards Institute or ANSI) X 3.2 subcommittee. The first edition of the standard was published in 1963. Full Form of ASCII Is ( American Standard Code for Information Interchange). Source Wikipedia

Note:- Class name should be same as program name 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.Scanner;
class ascii     //class name
{
    public static void main(String args[])
    {
 
 int ascii;
 char str='a';
 ascii='a';
        
 System.out.println("ASCII Value is: "+ascii);
}
}

 

Output:

ASCII Value is:97

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now