ASCII 표
10진수, 16진수, 문자 값으로 ASCII 전체 집합을 살펴봅니다. 제어 문자와 인쇄 가능 문자가 한 표에 정리되어 있습니다.
This page is useful when you need a quick decimal-to-hex lookup for protocols, text processing or encoding work.
ASCII reference table
| Dec | Hex | Char | Description |
|---|
소개 ASCII
ASCII is a 7-bit character encoding standard that maps the values 0 through 127 to letters, digits, punctuation and control signals. It remains relevant because many protocols, formats and legacy systems build on top of ASCII-compatible text.
예시
32 = 0x20 = 공백 65 = 0x41 = A 10 = 0x0A = Line Feed
자주 묻는 질문
ASCII란 무엇인가요?
ASCII는 일반적인 영문자, 숫자, 제어 문자에 대해 숫자 코드를 정의하는 표준 문자 집합입니다.
공백의 ASCII 코드는 무엇인가요?
공백의 ASCII 코드는 10진수로 32, 16진수로 0x20입니다.
ASCII와 Unicode의 차이는 무엇인가요?
ASCII covers only 128 characters. Unicode is a much larger standard that supports characters from many writing systems and symbol sets.