헤르메스 LIFE

[Source] String to Unicode 본문

Core Java

[Source] String to Unicode

헤르메스의날개 2010. 10. 20. 15:31
728x90
public class StringToUni { 
    public static void main(String[] args) { 
          String str = "아름다운"; 
          StringBuffer strVal = new StringBuffer(); 

          for(int i = 0; i < str.length();I++) { 
                 char c= str.charAt(i); 
                 strVal.append("\\u" + Integer.toHexString(c)); 
          } 

          System.out.println(strVal.toString()); // 결과 : \uc544\ub984\ub2e4\uc6b4 
    } 
}
728x90

'Core Java' 카테고리의 다른 글

[Source] Unicode 2.0 을 Unicode 1.2 로 변환  (0) 2010.10.20
[Source] Character Set Conversion  (0) 2010.10.20
[Source] Unicode To String  (0) 2010.10.20
[Source] CVS 폴더 삭제  (0) 2010.09.06
[Source] FTP Client Source  (0) 2010.07.30