加解密 7个在线工具
文本工具 11个在线工具
开发 13个在线工具
网络 9个在线工具
换算器 17个在线工具
生活 13个在线工具
图片 6个在线工具
旧版工具 9个在线工具
Base64 转换器 - Base64 string encoder/decoder
在线base64编码、解码工具。
Simply encode and decode string into a their base64 representation.
Simply encode and decode string into a their base64 representation.
需要转换的文本 copy
Base64 copy
Base64 转换器常见问题
Base64 是做什么的?
把二进制数据编码为可打印字符,常用于邮件附件、在 JSON 或 URL 中传二进制、网页内嵌图片(Data URL)等场景。
Base64 编码是加密吗?
不是。Base64 只是编码而非加密,任何人都可以无损解码,切勿用它保护敏感信息,需要保密请使用加密工具。
中文 Base64 编码后为什么变长?
中文在 UTF-8 中占 3 字节,Base64 每 3 字节编码为 4 个字符,体积约增加 33%,这是编码机制决定的。