charCodeAt() 메서드는 주어진 인덱스에 대한 (unicode값)UTF-16 코드를 나타내는 0부터 65535 사이의 정수를 반환합니다.
let str_e = "hello, world";
let str_k = "안녕하세요";
console.log(str_e.charCodeAt(4)); //결과값: 111
console.log(str_k.charCodeAt(4)); //결과값: 50836
charCodeAt(4)는 'o'와 '요'에 해당하는데, 각각 문자의 10진수로 '111'과 '50836'으로 결과값이 리턴되었습니다.