URL Parser & Encoder

Inspect & Fix Broken URLs

URL Components

Protocol -
Host -
Path -
Query String -

Query Parameters

No parameters found.

Debug & Fix Broken URLs

URL Encoding (Percent-Encoding) is a mechanism for encoding information in a Uniform Resource Identifier (URI). Characters that are not allowed in a URL (like spaces, emojis, or special symbols) must be converted to a safe format (e.g., Space becomes %20).

Key Features

  • Parser: Splits a URL into Protocol, Hostname, Path, and Query String instantly.
  • Query String Exploder: Break down complex UTM parameters and API queries into a readable table.
  • Encoder/Decoder: Safely encode text for use in a URL, or decode a messy URL back to human-readable text.

Common Use Cases

API Testing

Ensure your GET request parameters are correctly encoded to prevent 400 Bad Request errors.

Marketing (UTMs)

Verify that your Google Analytics UTM tags (`utm_source`, `utm_medium`) are attached correctly.

Related Tools