コード、データと QRツール

URL パーサー

「URL パーサー」はコード、データと QRに使えるブラウザツールです。入力内容と結果は通常この端末内で処理され、登録は必要ありません。

ブラウザ内で処理登録不要プライバシーの説明 ↗

Absolute URLs only. Parsing stays in this browser and never opens the address.

使い方

使い方

  1. Paste an absolute URL, including its protocol when possible.
  2. Choose Parse URL to inspect each component and query parameter.
  3. Copy the normalized URL or an individual component when you need it elsewhere.

A local URL inspection tool

Parsing happens entirely in your browser with the built-in URL and URLSearchParams APIs. The pasted address is never opened, fetched, resolved, or sent to a server.

What gets displayed

Review the normalized URL, origin, protocol, username, port, hostname, pathname, search, hash, and each decoded query parameter. Values remain text; parsing does not validate that a destination exists or is safe.

よくある質問

あわせて知りたいこと

Does this open the URL?

No. It only parses the text you paste. No network request is made.

Why does the normalized URL differ from my input?

The standard URL parser applies URL syntax rules such as lowercasing a hostname, resolving dot segments, and serializing query parameters consistently.

Can I parse a relative path?

Enter an absolute URL with a protocol, such as https://example.com/path. Relative paths need a base URL, which this tool does not invent.