이론/JS
[JS] 아스키코드를 문자로 변환하는 방법 String.fromCharCode()
millfeel1298
2021. 4. 21. 02:39
String.fromCharCode(num1[, ...[, numN]])
[num1, ..., numN]
UTF-16 코드 유닛인 숫자 뭉치. 가능한 값의 범위는 0부터 65535(0xFFFF)까지입니다. 0xFFFF를 초과하는 값은 잘립니다. 유효성 검사는 하지 않습니다.
[반환 값]
주어진 UTF-16 코드 유닛 N개로 이루어진 문자열.
아스키코드 번호 조회
www.easycalculation.com/ascii-hex.php
String to ASCII chart, ASCII to decimal convertor, String to decimal converter, string hexadecimal / hex conversion
www.easycalculation.com
응용
See the Pen [JS] String.fromCharCode() by mill (@millfeel) on CodePen.
[공부 좌표]