ASCII를 Hex로 변환하는 도구
ASCII 또는 텍스트 문자열을 즉시 16진수 코드로 변환합니다. 사용자 정의 구분자, 출력 복사, 샘플 입력 및 아래 전체 ASCII 문자 테이블을 지원합니다.
ASCII를 16진수로 변환하는 방법
- ASCII/텍스트를 입력란에 입력하거나 붙여넣기합니다.
- 구분 기호(공백, 쉼표, 대시 또는 없음)를 선택합니다.
- 변환을 클릭하여 아래에 16진수 출력을 얻습니다.
- 16진수 출력을 복사하거나 사용할 곳에 붙여넣습니다.
예시: ASCII에서 16진수로
- ASCII 입력:
Hello
- 16진수 출력:
48 65 6C 6C 6F
Hello
→48 65 6C 6C 6F
ASCII 표
문자 | Hex | Decimal |
---|---|---|
에이 | 41 | 65 |
비 | 42 | 66 |
씨 | 43 | 67 |
에이 | 61 | 97 |
비 | 62 | 98 |
씨 | 63 | 99 |
공 | 30 | 48 |
일 | 31 | 49 |
느낌표 | 21 | 33 |
물음표 | 3F | 63 |
Where is ASCII to Hex Used?
ASCII to hex conversion is used in programming, networking, debugging, embedded systems, and anywhere byte-level data is displayed or processed. Hexadecimal is shorter and more readable for humans than binary, and widely supported by all platforms.
FAQ
- Q: Does it support Unicode characters?
A: This tool is designed for standard ASCII (single byte, 0-127). Extended characters may have different codes in Unicode. - Q: Can I use custom delimiters?
A: Yes, choose one from the list or enter your own string (comma, space, dash, etc.). - Q: How do I convert hex back to ASCII?
A: Use our Hex to ASCII tool for reverse conversion.