编码工具

编码和解码 Base64、Base32、Base58、Base36、URL 编码、HTML 实体、Unicode、二进制、十六进制、ROT13 和摩斯电码。所有处理均在浏览器本地完成。

全部编码工具

21 tools
🔐
Base64 Encoder/Decoder
Quickly encode and decode Base64, supports text and files with URL-safe mode
🔐
Base64URL Converter
Encode and decode Base64URL text online
🔢
Base32 Converter
Encode and decode Base32 text online
🔑
Base58 Converter
Encode and decode Base58 text online
🔤
Base36 Converter
Encode and decode Base36 text online
🔗
URL Encoder/Decoder
Quickly encode and decode URLs, handles special characters with bidirectional conversion
🌐
Unicode Converter
Escape and unescape Unicode text online
💻
Binary Converter
Convert between text and binary online
🔷
Hex Converter
Encode and decode hexadecimal text online
🔐
ROT13 Encode
Simple text encoding using ROT13 letter substitution cipher
📡
Morse Code Converter
Encode and decode Morse code online
⚙️
TOML/YAML Converter
Convert between TOML and YAML formats online
🔁
Decimal to Hex
Convert decimal numbers to hexadecimal and vice versa
🔢
Binary to Decimal
Convert binary to decimal and between number bases
ASCII to Hex
Convert between ASCII, Hex, Decimal, Octal, and Binary formats
🔤
HTML Entities Encoder
Encode and decode HTML entities for safe text rendering
Escape/Unescape
Escape and unescape strings for HTML, URL, JavaScript, and more
📊
CSV TSV Converter
Convert between CSV and TSV formats online
📄
HTML Text Converter
Convert between HTML and plain text online
📑
HTML Markdown Converter
Convert between HTML and Markdown online
🕵️
Caesar Cipher
Encrypt and decrypt text using Caesar cipher algorithm with shift control

常见问题

什么是 Base64 编码?什么时候应该使用?
Base64 编码将二进制数据转换为 ASCII 文本,常用于在 HTML/CSS 中嵌入图片、邮件附件和 API 载荷。当输出需要在 URL 中使用且不含 + 和 / 字符时,请使用 Base64 URL 安全编码。
Base64 和 Base64URL 有什么区别?
标准 Base64 使用 + 和 / 字符,这些字符不是 URL 安全的。Base64URL 将 + 替换为 -,/ 替换为 _,并移除 = 填充,使输出可以安全地用于 URL 和文件名。
什么是 URL 编码?
URL 编码(百分号编码)将 URL 中的特殊字符转换为 %XX 格式。例如,空格变为 %20。这确保 URL 在包含保留字符或非 ASCII 文本时仍然有效。
这些编码工具安全吗?
是的,所有编码和解码操作完全在浏览器中使用 JavaScript 执行。不会将任何数据发送到服务器,确保您的敏感信息完全私密。
什么是 ROT13?它是安全加密吗?
ROT13 是一种简单的字母替换密码,将每个字母移动 13 个位置。它不是安全加密——很容易被逆向,主要用于隐藏剧透或随意的混淆。如需真正的加密,请使用 AES-256 的文本加密/解密工具。