Encoding
Base64 Encode
Encode plain text into Base64.
Percent-encode text so it can be safely dropped into a URL, query string, or form field without breaking the surrounding URL structure.
此工具接收结构化输入,在浏览器中返回确定性输出,无需上传到服务器。
Percent-encode text so it can be safely dropped into a URL, query string, or form field without breaking the surrounding URL structure.
URLs reserve a small set of characters for structural meaning (?, &, =, /, #, and others). When you want to put arbitrary text inside a URL — for example, a search query, a path segment, or a query-string value — you must percent-encode the reserved and non-ASCII characters. This tool wraps the browser's built-in encodeURIComponent so each non-safe byte becomes %XX.
hello world & friends
hello%20world%20%26%20friends
在下方的 Encoding 分类中发现相关工具。
精选可能对你有用的实用工具