URL编码/解码器

安全地编码或解码URL和查询字符串。

如何使用URL编码/解码器

Paste your text and click 编码 to convert special characters into percent-encoded format suitable for URLs. Click 解码 to reverse the process. This is essential when working with query strings, API parameters, or any URL that contains non-ASCII characters.

常见问题

哪些字符会被编码?

保留字符(如?、&、=、#)、不安全字符(空格、引号、括号)以及非ASCII字符都会被百分号编码。

这和Base64编码一样吗?

不是。URL编码和Base64是不同的。URL编码将字符转换为%XX格式,以便安全地传输URL。