RevealTheme logo

ASCII에서 16진수 변환기

텍스트를 ASCII 16진수 코드로, 그리고 그 반대로 변환합니다. 각 문자는 2자리 16진수 값으로 변환됩니다.

이 도구 사용 방법

  1. 1

    Pick a direction from the dropdown: 'Text -> Hex' to encode, or 'Hex -> Text' to decode.

  2. 2

    Type or paste your input into the text box.

  3. 3

    Read the converted result in the output box below — it updates live as you type.

  4. 4

    For decoding, separate each hex value with a space (for example '48 65 6C 6C 6F').

ASCII에서 16진수 변환기란 무엇인가요?

텍스트의 각 문자는 하나의 숫자에 대응됩니다(기본 라틴 문자는 ASCII, 그 외 모든 것은 유니코드 코드 포인트). 16진수는 이러한 숫자를 간결하게 표현하는 방식입니다: 'A'는 10진수로 65, 16진수로 41입니다. 이 변환은 텍스트 인코딩 문제를 디버깅하거나, 바이너리 프로토콜을 다루거나, 이스케이프 시퀀스를 구성할 때 유용합니다.

일반적인 사용 사례

  • Inspecting invisible control characters (tabs, newlines, non-breaking spaces) that are breaking a parser or CSV import.

  • Hand-building escape sequences like \x41 for code, regex, or shell snippets.

  • Decoding a space-separated hex dump pasted from a log, packet capture, or protocol trace back into readable text.

  • Teaching or learning how characters map to numeric codes and base-16 notation.

  • Quickly checking the hex code of a specific symbol before hard-coding it into a config or test fixture.

  • Spotting smart quotes or homoglyphs by confirming whether a character is the plain ASCII version or a higher code point.

관련 도구