URLエンコーダー/デコーダー
URLコンポーネントとクエリ文字列パラメータをエンコード・デコード
Client-side only — uses native browser encodeURIComponent / decodeURIComponent (RFC 3986). Your data never leaves the browser.
URL Encoder & Decoder
Encode special characters in URLs (percent-encoding) or decode percent-encoded strings back to readable text. Essential for query parameters, API endpoints, and web scraping.
FAQ
What is URL encoding?
URL encoding replaces unsafe ASCII characters with % followed by two hex digits. A space becomes %20, & becomes %26.
When do I need to URL encode?
When passing special characters in query parameters or form data. Unencoded characters like #, &, and = break the URL.
encodeURI vs encodeURIComponent?
encodeURI encodes a full URL and leaves /, ?, # intact. encodeURIComponent encodes a single value and escapes those characters too — use it for query string values.
さらに探す
おすすめのその他の 開発者ツール…
JSONフォーマッター
構文ハイライトとエラー検出でJSONを整形、検証、圧縮
Base64エンコーダー/デコーダー
テキストやファイルをBase64にエンコードし、Base64文字列を読めるテキストにデコード
UUIDジェネレーター
ランダムUUID(v1、v4)を生成するか、複数のUUIDを一括生成
ハッシュジェネレーター
テキストやファイルからMD5、SHA-1、SHA-256、SHA-512ハッシュを生成
正規表現テスター
リアルタイムのマッチハイライトとグループ抽出で正規表現をテスト
JWTデコーダー
JSON Web Tokenをデコードして検査 — ヘッダー、ペイロード、署名を確認
HTMLフォーマッター
適切なインデントと構文ハイライトでHTMLコードを整形・美化
CSS圧縮ツール
空白とコメントを削除してCSSコードを圧縮しファイルサイズを縮小