250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- JavaScript
- Source
- MySQL
- oracle
- Python
- maven
- Core Java
- ubuntu
- Open Source
- Eclipse
- PostgreSQL
- JDBC
- spring
- Docker
- error
- STS
- SpringBoot
- AJAX
- MSSQL
- 오픈소스
- IntelliJ
- Tomcat
- 설정
- 문서
- Exception
- myBatis
- Spring Boot
- jpa
- git
- Thymeleaf
Archives
- Today
- Total
목록Open Source (41)
헤르메스 LIFE
[Source] Unicode To String
import java.io.UnsupportedEncodingException; public class UniToString { public static void main(String[] args) { String hexStr = "\uc544\ub984\ub2e4\uc6b4"; String ls = null; try { ls = new String(hexStr.getBytes(), "UTF-8"); } catch(UnsupportedEncodingException e) { e.printStackTrace(); } System.out.println(ls); // 결과 : 아름다운 } }
Core Java
2010. 10. 20. 15:27