代码
提交代码
public class CharType {
public static void main(String[] args) {
// 存放一个 ASCII 码
char a = 97;
// 存放一个Unicode字符
char zh = '慕';
System.out.println(a);
System.out.println(zh);
}
}
运行结果