Programming Examples

Java program to find ascii value of character


Write a Java program that converts a character to an integer (ASCII value) .

Solution

import java.util.Scanner;
public class CharIntegerConversion 
{
    public static void main(String args[]) 
	{
        Scanner sc = new Scanner(System.in);
        System.out.print("Enter a character: ");
        char character = sc.next().charAt(0);
        int asciiValue = (int) character; // Convert character to integer (ASCII value)
        System.out.println("ASCII value of '" + character + "' is: " + asciiValue);
    }
}
Output

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad