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 カテゴリで関連ユーティリティを探す。
役に立ちそうな厳選ユーティリティ