String.fromCharCode()

차노·2023년 8월 24일
0

JS

목록 보기
84/96

정의

유니코드 아스키 코드 값을 이용하여 해당 아스키 코드 값을 가지는 문자를 생성하는 JavaScript 함수이다.

For example, 65 represents Capital 'A', and 97 means 'a'. So, String.fromCharcode(65) creates string 'A' and string.fromCharCode(97) makes string 'a'.

0개의 댓글