二進位翻譯器
將文字轉換為二進位碼,或進行反向轉換。每個字元都會轉換為其 8 位元的 ASCII 表示。
如何使用本工具
- 1
Pick a direction from the dropdown: 'Text → Binary' to encode, or 'Binary → Text' to decode.
- 2
Type or paste your input into the text box.
- 3
Read the converted result in the gray output panel below as you type — it updates live.
- 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.
常見問題
它能處理表情符號嗎?▼
相關工具
密碼雜湊產生器(PBKDF2)
使用 PBKDF2-SHA256 在你的瀏覽器中產生安全的密碼雜湊。比 MD5 或簡單 SHA 更強,工作因子可調。
HMAC產生器
使用SHA-1、SHA-256、SHA-384或SHA-512產生HMAC簽章。
AES-256 加密
使用 AES-256-GCM 加密和解密文字。金鑰透過 PBKDF2-SHA256 從你的通行碼衍生而來。
2FA QR Code 產生器
為 Google Authenticator、Authy、1Password 及其他 2FA 應用程式產生 TOTP QR Code。
密碼強度檢測器
根據字元集大小和常見密碼清單檢測你密碼的熵值。完全離線執行。
凱撒密碼編碼與解碼工具
使用凱撒密碼對文字進行編碼或解碼:按固定位移替換字母。