一个打印特定字符的 ASCII 值的 Java 程序
ASCII 是美国标准信息交换码的缩写。有 128 个标准的 ASCII 码,每个 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
广告