2진수 번역기
텍스트를 2진 코드로, 그리고 그 반대로 변환합니다. 각 문자는 8비트 ASCII 표현으로 변환됩니다.
이 도구 사용 방법
- 1
Pick a direction from the dropdown: 'Text → Binary' to encode, or 'Binary → Text' to decode.
- 2
Type or paste your input into the text box.
- 3
Read the converted result in the gray output panel below as you type — it updates live.
- 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.
자주 묻는 질문
이모지에도 작동하나요?▼
관련 도구
비밀번호 해시 생성기(PBKDF2)
PBKDF2-SHA256을 사용하여 사용자의 브라우저에서 안전한 비밀번호 해시를 생성합니다. MD5나 단순 SHA보다 강력하며, 작업 계수를 조정할 수 있습니다.
HMAC 생성기
SHA-1, SHA-256, SHA-384 또는 SHA-512를 사용하여 HMAC 서명을 생성합니다.
AES-256 암호화
AES-256-GCM으로 텍스트를 암호화하고 복호화합니다. 키는 PBKDF2-SHA256을 통해 사용자의 비밀 문구에서 파생됩니다.
2FA용 QR 코드 생성기
Google Authenticator, Authy, 1Password 등 2FA 앱을 위한 TOTP QR 코드를 생성합니다.
비밀번호 강도 검사기
문자 집합 크기와 흔한 비밀번호 목록을 기준으로 비밀번호의 엔트로피를 검사합니다. 완전히 오프라인으로 작동합니다.
카이사르 암호 인코더 및 디코더
카이사르 암호로 텍스트를 인코딩하거나 디코딩합니다. 고정된 자리수만큼 글자를 치환하는 방식입니다.