In this section, you will learn to convert a character data into the ASCII format. The java.lang package provides the functionality to convert the character data into the ASCII format
Description of Code:
The following program helps in converting a character data into ASCII. Create a class "CharToASCII". This program takes a character at the console . It fragments the given string according to its positions with the help of charAt() method. This method returns the character at the specified index. Type casting ((int) c) is done to convert the character into an ASCII.
Here is the code of this program:
import java.io.*;
|
Output of this program.
| C:\corejava>java CharToASCII Enter the char: A ASCII OF A = 65. C:\corejava> |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Convert a Character into the ASCII Format View All Comments
Post your Comment