시다바리
[Java] 한글 UniCode 를 한글로 변환 시키는 소스 본문
/**
* 한글 UniCode 를 한글로 변환 시키는 소스
* Myoung-Geun Jang(jangsalt@nextelecom.co.kr)
* 2008. 5. 9
*/
public class UnicodeToChar {
public static void main(String[] arg) {
String uniCodeStr = String.format("\uD14C\uC2A4\uD2B8");
String[] rawUnicode = uniCodeStr.split("");
int intVal = 0;
char[] chVal;
for( int i = 0; i < rawUnicode.length; i++ ) {
chVal = rawUnicode[i].toCharArray();
for( int j = 0; j < chVal.length; j++ ) {
intVal = chVal[j];
System.out.print(chVal[j]);
}
}
System.out.println();
}
}
Comments