Java判断中文及中文字符转unicode

时间:2021-09-29 07:41:32
1、java中判断字符是否为中文    public String chinaToUnicode(String str){        String result="";        for (int i = 0; i < str.length(); i++){             int chr1 = (char) str.charAt(i);             if(chr1>=19968&&chr1<=171941){//汉字范围 \u4e00-\u9fa5 (中文)                 result+="\\u" + Integer.toHexString(chr1);             }else{                 result+=str.charAt(i);             }        }  


原文地址:Java判断中文及中文字符转unicode | http://orgcent.com/java-check-chinese-unicode/