クエリ文字列解析
URL の `?a=1&b=2` を見やすく解析。重複キーも配列化して確認。
URL Utility
Query String Parser
Paste a full URL or just the query part and inspect it as decoded key-value data.
0 chars
| Key | Value |
|---|
クエリ文字列解析で出来る事 About Query String Parser
クエリ文字列解析ツールは、URL に含まれる `?utm_source=newsletter&tag=alpha` のようなクエリパラメータを、デコード済みのキー・値として読みやすく整理できるブラウザ完結型ユーティリティです。開発やマーケティング、検証作業では、フル URL を貼り付けて「実際にどのキーが含まれているのか」「`%E3%81%82` のようなエンコード済み文字列が何を意味するのか」「同じキーが複数回使われているのか」を素早く確認したい場面がよくあります。
このツールでは、フル URL を貼り付けても `?` 以降だけを自動抽出し、`+` を空白として扱いながら percent-encoding を復元し、重複キーは JSON 配列へまとめて表示します。さらに JSON ビューとテーブルビューの切り替え表示に対応しているため、JSON コピペ用途にも、キーと値の個別確認にも便利です。
たとえば UTM パラメータ確認、フォーム送信デバッグ、API 呼び出し前の URL 点検、リダイレクトやトラッキングリンクの検査に活躍します。壊れた percent-encoding が含まれている場合はエラーとして返すため、クエリ文字列自体の不正も見つけやすくなります。処理はすべてブラウザ内で完結するので、調査中の URL やパラメータを外部サービスへ送信する必要はありません。
The Query String Parser is a browser-based tool for turning URL query parameters into decoded, readable key-value data. In development, analytics, QA, and support work, you often need to inspect a long URL and answer practical questions such as which parameters are present, what percent-encoded values actually mean, whether repeated keys exist, and how the final parameter set would look once decoded.
This tool accepts either a full URL or just the raw query part, automatically extracts the text after the question mark, decodes percent-encoded values, treats plus signs as spaces, and groups duplicate keys into arrays. It offers both JSON and table view formats, so you can copy the parsed output as JSON or inspect key-value pairs individually at a glance.
It is useful for checking UTM parameters, debugging form submissions, verifying API request URLs, inspecting redirect chains, and reviewing campaign links before sharing them. If the query contains broken percent-encoding, the tool reports that as an error instead of silently producing misleading output. Everything runs locally in the browser, so URLs and parameter values stay on your machine.
クエリ文字列解析の使い方 How to use Query String Parser
- フル URL か、`?` 以降のクエリ文字列を入力欄へ貼り付けます。
- ツールが自動でクエリ部分を抽出し、percent-encoding を復元して JSON 形式へ変換します。
- JSON ビュー(デフォルト)または テーブルビュー を切り替えて、見やすい形式で確認できます。
- 重複キーがある場合は配列としてまとめられるので、実際の構造を把握します。
- 必要なら解析結果をコピーして、デバッグメモや API テスト、設定確認に使います。
- Paste either a full URL or only the raw query string into the input field.
- The tool extracts the query part automatically and decodes the percent-encoded values into JSON.
- Toggle between JSON view (default) and table view to inspect the results in your preferred format.
- If the same key appears multiple times, it is grouped into an array so you can inspect the real structure.
- Copy the parsed output into debugging notes, API tests, or documentation when needed.
クエリ文字列解析を使うメリット Benefits of Query String Parser
- フル URL からクエリ部分だけを自動抽出でき、貼り付け前の前処理がいりません。
- エンコード済みの値を読める形へ戻し、UTM や API パラメータを確認しやすくします。
- 重複キーを配列化するため、実際の送信内容を JSON として把握できます。
- ブラウザ完結なので、調査中の URL やパラメータを外部に送信せずに済みます。
- Accepts full URLs directly, so you do not need to manually isolate the query string first.
- Decodes percent-encoded values into readable text for easier inspection of tracking or API parameters.
- Groups duplicate keys into arrays so the resulting JSON matches the real structure more closely.
- Keeps URLs and parameter values local because all parsing happens in the browser.
他のカテゴリ Other Categories
開発ツール の人気ツール TOP 10 Popular Developer Tools Tools TOP 10
開発ツール のすべてのツール (43件) All Developer Tools Tools (43)
該当するツールが見つかりませんでした No matching tools found