RevealTheme logo

Penerjemah Biner

Konversikan teks ke kode biner dan sebaliknya. Setiap karakter dikonversi menjadi representasi ASCII 8-bit-nya.

Cara menggunakan alat ini

  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.

Apa itu Penerjemah Biner?

Komputer menyimpan semua teks sebagai biner: urutan 0 dan 1. Setiap karakter ASCII dipetakan ke sebuah angka dari 0 hingga 127, yang muat dalam 7 bit (diisi menjadi 8 untuk penyelarasan byte). Sebagai contoh, huruf 'A' adalah 65 dalam desimal, yang berupa 01000001 dalam biner.

Kasus penggunaan umum

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

Pertanyaan yang sering diajukan

Apakah alat ini bekerja dengan emoji?
Emoji adalah UTF-8 multi-byte. Alat ini menangani ASCII (Latin dasar). Untuk biner Unicode penuh, Anda memerlukan konverter urutan byte UTF-8.

Alat terkait