DevToolBox無料
ブログ

URLパーサー

URLをプロトコル、ホスト、パス、クエリに解析。無料で登録不要。

𝕏 Twitterin LinkedIn

💬 User Feedback

Have suggestions or found a bug? Leave a message and we'll get back to you.
0/2000

このツールを評価

4.1 / 5 · 160 件の評価

最新情報を受け取る

毎週の開発ヒントと新ツール情報。

スパムなし。いつでも解除可能。

Enjoy these free tools?

Buy Me a Coffee

How to Use

  1. Paste a complete URL into the input field
  2. View the parsed components: protocol, host, path, query, hash
  3. Inspect individual query parameters in the table
  4. Copy any component value you need

Common Use Cases

  • Debugging complex API endpoint URLs
  • Analyzing UTM tracking parameters in marketing URLs
  • Extracting query parameters from redirect URLs
  • Validating URL format before using in applications

Frequently Asked Questions

What are the parts of a URL?
A URL consists of: protocol (https://), hostname (example.com), port (:8080), pathname (/api/users), query string (?id=123&sort=name), and fragment hash (#section).
How are query parameters parsed?
Query parameters start after the ? character and are separated by &. Each parameter is a key=value pair. Values may be percent-encoded for special characters.
Does it handle encoded URLs?
Yes. The tool automatically decodes percent-encoded characters (like %20 for spaces) and displays the decoded values alongside the raw encoded form.