공부한것들을 정리하는 블로그 입니다.
유니코드 <-> 한글 자동변환 본문
반응형
유니코드의 %는 \라고 생각하시면 됩니다.
ex) 가 = \uAC00 = %uAC00
한글 입/출력
유니코드 입/출력
유니코드 입/출력
소스코드
<div>
<span>한글 출력</span>
<textarea id="kor" placeholder="한글" style="width:100%" rows="5"></textarea>
<br>
<span>유니코드 출력</span>
<textarea id="uni" placeholder="유니코드" style="width:100%" rows="5"></textarea>
<br>
<script>
function replaceAll(strTemp, strValue1, strValue2){
while(1){
if( strTemp.indexOf(strValue1) == -1 )
break;
strTemp = strTemp.replace(strValue1, strValue2);
}
return strTemp;
}
$(document).ready(function() {
$("#uni").keyup(function() {
$("#kor").val(unescape(replaceAll($("#uni").val(), "\\", "%")));
});
$("#kor").keyup(function() {
$("#uni").val(escape(replaceAll($("#kor").val(), "\\", "%")));
});
});
</script>
<div>
반응형
'잡담 > 개인보관용' 카테고리의 다른 글
인텔리제이 단축키 (0) | 2022.07.06 |
---|---|
자바 위키 (0) | 2022.05.25 |
특수문자 URL 인코딩(Encode) / 디코딩(Decode) 표기 방법 (0) | 2022.01.19 |
[Eclipse] 이클립스에서 .class 파일 열기(Class Decompile) (0) | 2019.06.21 |
Eclipse Project Encoding UTF-8 (0) | 2019.06.20 |
Eclipse Spring Error : Cannot change version of project facet Dynamic Web Module to 2.5 (0) | 2019.06.20 |
jar가 포함된 maven 등 repository 검색하는 사이트 (0) | 2019.06.20 |
[oracle error] 해결: Socket read interrupted, Authentication lapse 0 ms. 또는 [Eclipse Tomcat error] : server ports required by tomcat are already in use (1) | 2019.06.17 |
Comments