-
[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); // returns 'C'
반응형'Javascript > 메서드' 카테고리의 다른 글
[JS 메서드] 진법변환 - toString(), parseInt() (0) 2022.12.26 [JS 메서드] 문자열 채우기 - padEnd() (0) 2022.12.26 [JS 메서드] 문자열 반복 - .repeat() (0) 2022.12.14