RevealTheme logo

二進位翻譯器

將文字轉換為二進位碼,或進行反向轉換。每個字元都會轉換為其 8 位元的 ASCII 表示。

如何使用本工具

  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.

什麼是二進位翻譯器?

電腦將所有文字都儲存為二進位:由 0 和 1 組成的序列。每個 ASCII 字元都對應到 0 到 127 之間的一個數字,可容納於 7 位元中(為位元組對齊而補足到 8 位元)。例如,字母「A」的十進位是 65,其二進位為 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.

常見問題

它能處理表情符號嗎?
表情符號是多位元組的 UTF-8。本工具處理的是 ASCII(基礎拉丁字元)。若需完整的 Unicode 二進位,你需要一個 UTF-8 位元組序列轉換器。

相關工具