字母所对应的Unicode编码

A~Z                65~90

a~z                 97~122

 

public class Unicode {

public static void main(String[] args) {
// TODO Auto-generated method stub
int A=32;
while (A<=122) {
System.out.println((char)A+"数字是"+A);
A++;
}
}

}

这是java

posted @ 2018-02-25 09:03  冯天羽  阅读(4098)  评论(0编辑  收藏  举报