ASCII stands for American Standard Code for Information Interchange. [ASCII 약자]
ASCII is a numeric value that is given to different characters and symbols for computers to store and manipulate.
*For example, the ASCII value of the letter 'A' is 65.
Resource: ASCII chart of all 127 characters in JavaScript.
문자열의 ASCII 코드값 구하기: www.programiz.com/javascript/examples/ascii-value-character (참조 영어 원문)
* charCodeAt() 메소드(함수)로, 문자를 번호로 변환할 수 있고,
* fromCharCode() 로는, 정반대로, 문자 번호를 진짜 문자로 바꿀 수 있다.
'Programming > Useful Tips & Links' 카테고리의 다른 글
Data Structure Related (0) | 2020.12.07 |
---|---|
Time-Complexity Related (0) | 2020.12.04 |
코드 스타일링 & 가독성 (0) | 2020.11.11 |
[HTML & CSS] 주석 처리 (0) | 2020.11.07 |