URLエンコーダー/デコーダー
WebアドレスでURLコンポーネントを安全にエンコード・デコード。
How to Use
- 1
Paste your text or URL into the input field.
- 2
Click Encode to percent-encode special characters, or Decode to convert percent-encoded strings back.
- 3
Copy the result with the copy button.
Features
RFC 3986 Compliant
Uses JavaScript's encodeURIComponent for standard percent-encoding compliant with RFC 3986.
Encode & Decode
Easily switch between encoding plain text to a URL-safe format and decoding encoded strings.
Handles Special Characters
Correctly encodes spaces, ampersands, equals signs, and other characters that are unsafe in URLs.
Instant Processing
Encoding and decoding happens instantly in your browser with no server requests.
FAQ
URLエンコーディングが必要な場面は?
URLパラメータやクエリ文字列に特殊文字(スペース、&、=等)を含める場合。
どのエンコーディング標準が使われていますか?
JavaScriptのencodeURIComponent関数によるRFC 3986準拠のパーセントエンコーディング。