URLパーサー
URLを入力してそのコンポーネントを表示します:
URLパーサー
What is a URL Parser?
A URL (Uniform Resource Locator) has a well-defined structure with multiple components: protocol/scheme (https://), username and password (for authenticated URLs), hostname (example.com), port (:8080), path (/blog/article), query string (?id=123&page=2), and fragment (#section). Parsing a URL breaks it apart into these components, making it easy to inspect, modify, or debug. This is useful when debugging API requests, understanding redirect chains, inspecting tracking URLs, or when you need to programmatically extract parts of a URL.
How to Use the URL Parser
-
Paste any URL into the input field.
-
The tool parses and displays each component: protocol, host, port, path, query parameters, and fragment.
-
Query parameters are shown both as a list of key-value pairs and as formatted JSON.
-
Copy individual components as needed.
This URL parser runs entirely in your browser using the built-in URL API — no data is sent to any server. Handles all URL formats including URLs with authentication, non-standard ports, IPv6 addresses, and complex query strings. Useful for API debugging, security analysis, and URL construction.
よくある質問
ここで機密データをデコードするのは安全ですか? はい。すべてのデコーディングはJavaScriptを使用してブラウザで行われます。データはサーバーに送信されないため、エンコードされた文字列は完全にプライベートです。
Base64とURL-safe Base64の違いは何ですか? 標準的なBase64は+と/文字を使用しており、これらはURL内の特殊文字です。URL-safe Base64はこれらを-と_に置き換えるため、パーセントエンコーディングなしでURLとファイル名で安全に使用できます。
デコード出力がゴミに見えるのはなぜですか? 元のデータがバイナリ(画像、PDF、圧縮ファイルなど)の場合、デコード出力は読み取り可能なテキストになりません。その場合、Base64文字列はテキスト文字列ではなくバイナリファイルを表します。
Base64は暗号化の形式ですか? いいえ。Base64は暗号化ではなくエンコーディング方式です。誰でもキーなしにBase64文字列をデコードできます。機密データを保護するために使用してはいけません。そのためには適切な暗号化を使用してください。
Keywords: URLパーサーオンライン、URL解析、URLコンポーネント、URL解析、URLパーツ、無料URLツール