码迷,mamicode.com
首页 > 其他好文 > 详细

字母所对应的Unicode编码

时间:2018-02-25 11:22:14      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:code   gpo   str   nbsp   string   数字   public   sys   div   

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

字母所对应的Unicode编码

标签:code   gpo   str   nbsp   string   数字   public   sys   div   

原文地址:https://www.cnblogs.com/fzc521/p/8468571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!