본문 바로가기

Development/JavaScript

[JavaScript] 문자를 유니코드로 변환하는 함수

- 문자를 유니코드로 변환하는 함수


'문자'.charCodeAt(0).toString(16);


* 함수예제


1
2
3
4
5
6
7
8
9
10
11
<script>
    charToUnicode = function (str) {
        if(!str) return false;
        var unicode = '';
        for(var i =0,j=str.length; i<j ; i++){
            unicode += '\\' + str[i].charCodeAt(0).toString(16);
        };
        return unicode;
    }
    console.log("Unicode : " + charToUnicode('한글'));
</script>
cs