RevealTheme logo

Traduttore binario

Converte il testo in codice binario e viceversa. Ogni carattere viene convertito nella sua rappresentazione ASCII a 8 bit.

Come usare questo strumento

  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.

Che cos'è il traduttore binario?

I computer memorizzano tutto il testo come binario: sequenze di 0 e 1. Ogni carattere ASCII è mappato su un numero da 0 a 127, che entra in 7 bit (riempito a 8 per l'allineamento ai byte). Per esempio, la lettera 'A' è 65 in decimale, che è 01000001 in binario.

Casi d'uso comuni

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

Domande frequenti

Funziona con le emoji?
Le emoji sono UTF-8 a più byte. Questo strumento gestisce l'ASCII (latino di base). Per il binario Unicode completo, le servirebbe un convertitore di sequenze di byte UTF-8.

Strumenti correlati