RevealTheme logo

Traducteur binaire

Convertissez du texte en code binaire et inversement. Chaque caractère est converti en sa représentation ASCII sur 8 bits.

Comment utiliser cet outil

  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'est-ce que le traducteur binaire ?

Les ordinateurs stockent tout le texte sous forme binaire : des séquences de 0 et de 1. Chaque caractère ASCII correspond à un nombre de 0 à 127, qui tient sur 7 bits (complété à 8 pour l'alignement sur l'octet). Par exemple, la lettre « A » vaut 65 en décimal, soit 01000001 en binaire.

Cas d'usage courants

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

Questions fréquentes

Fonctionne-t-il avec les emoji ?
Les emoji sont en UTF-8 multi-octets. Cet outil gère l'ASCII (latin de base). Pour du binaire Unicode complet, il vous faudrait un convertisseur de séquences d'octets UTF-8.

Outils connexes