Java 程序以打印特定字符的 ASCII 值
ASCII 是美国信息交换标准代码的缩写。有 128 个标准 ASCII 代码,每个代码都可以用一个 7 位二进制数来表示:0000000 到 1111111。
如果你尝试将一个字符存储到一个整数值中,它将存储相应字符的 ASCII 值。
示例
import java.util.Scanner; public class ASCIIValue { public static void main(String args[]){ System.out.println("Enter a character ::"); Scanner sc = new Scanner(System.in); char ch = sc.next().charAt(0); int asciiValue = ch; System.out.println("ASCII value of the given character is ::"+asciiValue); } }
输出
Enter a character :: e ASCII value of the given character is ::101
广告