RevealTheme logo

Traductor Binario

Convierte texto a código binario y viceversa. Cada carácter se convierte en su representación ASCII de 8 bits.

Cómo usar esta herramienta

  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.

¿Qué es el Traductor Binario?

Los ordenadores almacenan todo el texto como binario: secuencias de 0 y 1. Cada carácter ASCII se asigna a un número del 0 al 127, que cabe en 7 bits (se rellena a 8 para la alineación en bytes). Por ejemplo, la letra 'A' es 65 en decimal, que es 01000001 en binario.

Casos de uso comunes

  • 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.

Preguntas frecuentes

¿Funciona con emoji?
Los emoji son UTF-8 de varios bytes. Esta herramienta gestiona ASCII (latín básico). Para binario Unicode completo, necesitarías un conversor de secuencias de bytes UTF-8.

Herramientas relacionadas