Programming Examples
Java program to find character from ascii value
Write a Java program that converts a ASCII value (integer) to character .
Solution
import java.util.Scanner;
public class CharIntegerConversion
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
System.out.print("Enter an ASCII value: ");
int anotherAsciiValue = sc.nextInt();
char anotherCharacter = (char) anotherAsciiValue; // Convert integer (ASCII value) to character
System.out.println("Character for ASCII value " + anotherAsciiValue + " is: " + anotherCharacter);
}
}
Output