RevealTheme logo

2진수 번역기

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

이 도구 사용 방법

  1. 1

    Pick a direction from the dropdown: 'Text → Binary' to encode, or 'Binary → Text' to decode.

  2. 2

    Type or paste your input into the text box.

  3. 3

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

  4. 4

    When decoding, separate each 8-bit group with a space so the tool knows where one character ends and the next begins.

2진수 번역기란 무엇인가요?

컴퓨터는 모든 텍스트를 2진수, 즉 0과 1의 시퀀스로 저장합니다. 각 ASCII 문자는 0에서 127 사이의 숫자에 대응되며, 이는 7비트에 들어갑니다(바이트 정렬을 위해 8비트로 채워짐). 예를 들어 문자 'A'는 10진수로 65이고, 이는 2진수로 01000001입니다.

일반적인 사용 사례

  • Teaching or learning how ASCII characters map to their binary byte values in a computer science class.

  • Decoding a short binary string someone shared in a puzzle, CTF challenge, or chat message.

  • Quickly checking the 8-bit pattern of a specific letter or symbol while debugging low-level code.

  • Creating a simple binary-encoded message for a hobby project, escape room, or geocaching clue.

  • Demonstrating place value and base-2 representation when explaining how data is stored.

  • Sanity-checking that a piece of text is pure ASCII before sending it through a byte-oriented protocol.

자주 묻는 질문

이모지에도 작동하나요?
이모지는 다중 바이트 UTF-8입니다. 이 도구는 ASCII(기본 라틴 문자)를 처리합니다. 완전한 유니코드 2진수를 위해서는 UTF-8 바이트 시퀀스 변환기가 필요합니다.

관련 도구