IT 문제해결

유니코드를 한글로 변환, 한글을 유니코드로 변환

클레인 2023. 2. 3.
반응형

Android 개발중 한글과 유니코드간에 스트링 변환을 빈번히 하게 됩니다.

 

유니코드와 한글간에 변환하는 함수를 아래 메모합니다.

 

유니코드를 한글로 변환

protected String uniToKsc(String uni) throws UnsupportedEncodingException{
  return new String (uni.getBytes("8859_1"),"KSC5601");
}

한글을 유니코드로 변환
protected String kscToUni(String uni) throws UnsupportedEncodingException{
  return new String (uni.getBytes("KSC5601"),"8859_1");
}
반응형

댓글