UtilitySansar
Developer

URL Parser

Paste any URL and instantly see its protocol, host, port, path segments, query parameters, and fragment — with values URL-decoded and ready to copy.

ツール要約

このツールは構造化された入力を受け取り、サーバーへアップロードせずにブラウザで決定的な出力を返します。

ツール名
URL Parser
入力の目的
変換・検証・分析するソースコンテンツを入力してください。
出力の目的
コピー・再利用・デバッグに適した正規化された出力を受け取ります。
入力例
https://example.com:8443/blog/post-1?utm_source=email&ref=newsletter#share
出力例
protocol: https host: example.com:8443 path: /blog/post-1 query: utm_source=email, ref=newsletter hash: #share

URL components

Protocol
https
Origin
https://shop.example.com:8443
Hostname
shop.example.com
Port
8443
Path
/products/widget
Hash
#reviews

Path segments (2)

  1. 1products
  2. 2widget

Query parameters (3)

KeyValueActions
utm_sourceemail
utm_campaignspring sale
refnewsletter

JSON view

ツールの紹介

Paste any URL and instantly see its protocol, host, port, path segments, query parameters, and fragment — with values URL-decoded and ready to copy.

ツール概要

Most URLs hide a lot of structure: subdomains, ports, encoded path segments, repeated query keys, and a fragment that may itself contain key/value pairs. This tool runs your input through the standard WHATWG URL parser, then expands every part into a labelled, copyable view. Query parameters are listed in the order they appear, with their values URL-decoded. Path segments are split on / and decoded too. A read-only JSON view makes it easy to drop the parsed result into a script or test fixture.

ユースケース

  • Debug redirects and tracking URLs by inspecting every UTM and query parameter.
  • Extract a deep link’s path segments to validate a route in your app.
  • Convert a stringy URL into a structured object for a test fixture.

入力/出力の例

入力の目的
https://example.com:8443/blog/post-1?utm_source=email&ref=newsletter#share
出力の目的
protocol: https
host: example.com:8443
path: /blog/post-1
query: utm_source=email, ref=newsletter
hash: #share

よくある質問

What if my URL is missing the scheme?+
The parser requires a scheme. If you paste www.example.com without https://, it will report an error. Add the scheme and try again.
Are query values URL-decoded?+
Yes. Values are decoded so you see the human-readable form, but the original encoded value is also shown.
Does it support internationalized domains (IDN)?+
Yes. Unicode hostnames are accepted; if you need to round-trip them through punycode, use the IDN Punycode Converter.

他のツールを見る

下記の Developer カテゴリで関連ユーティリティを探す。

Developer をすべて見る

関連ツール

役に立ちそうな厳選ユーティリティ