二进制翻译器
将文本转换为二进制代码,或进行反向转换。每个字符都会转换为其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二维码生成器
为Google Authenticator、Authy、1Password及其他2FA应用生成TOTP二维码。
密码强度检测器
根据字符集大小和常见密码列表检测你密码的熵值。完全离线运行。
凯撒密码编码与解码工具
使用凯撒密码对文本进行编码或解码:按固定位移替换字母。