반응형
fromcharat
-
[JS / 메서드] 유니코드 - charCodeAt(), fromCharCode()Javascript/메서드 2022. 12. 30. 15:42
str.charCodeAt(idx) str[idx]의 unicode point를 반환 'ABC'.charCodeAt(0); // returns 65 (the code point for 'A') 'ABC'.charCodeAt(1); // returns 66 (the code point for 'B') 'ABC'.charCodeAt(2); // returns 67 (the code point for 'C') String.fromCharCode(unicode point) unicode point에 해당하는 char을 반환한다. String.fromCharCode(65); // returns 'A' String.fromCharCode(66); // returns 'B' String.fromCharCode(67)..