Handy Dev Tools
Simple online tools for everyday tasks.

No favorites

    Base64 Encoder/Decoder
    Markdown to HTML
    HTML to Markdown
    URL Encoder/Decoder
    Unicode Escape Converter
    Unicode Encode/Decode
    SQL Formatter
    SQL Splitter
    JSON Formatter
    XML Formatter
    YAML Formatter
    GraphQL Formatter
    JSON to YAML Conversion
    YAML to JSON Conversion
    JSON to TOML Conversion
    TOML to JSON Conversion
    HTML Entity Encode/Decode
    TOML to YAML Conversion
    YAML to TOML Conversion
    CSV to SQL INSERT Conversion
    Markdown Table Generator
    JSON to XML Conversion
    XML to JSON Conversion
    UUID Generator
    ULID Generator
    Password Generator
    Hash Generator
    Lorem Ipsum Generator
    Lorem Picsum Image URL Generator
    Test Data Generator Tool
    QR Code Generator
    S3 Path Parser & Converter
    IP Address Calculator
    Subnet Split
    Subnet Consolidation
    CloudFront Signed URL Generator
    RDS Connection String Generator
    Coordinate Format Converter
    Geo Format Converter
    JWT Decoder & Parser
    Basic Auth
    Password Strength Analyzer
    Credit Card Validator
    RSA Key Pair Generator
    Case Conversion
    Romaji Conversion
    Roman Numeral Conversion
    Phonetic Code Conversion
    Character Counter
    Text Diff
    HTML Tag Remover
    Regex Tester
    Color Conversion
    Dice Roll
    Crontab generator
    Crontab parser
    Emoji Picker
    Unix Timestamp Converter
    HTTP Status Code Search
    Port Number Search
    MIME Type Lookup
    Base64 File Converter
    Image Base64 Encode/Decode
    User-Agent Parser
    URL Parser
    OGP Checker
    Commit Message Generator
    Chmod Calculator
    Terminal GIF Generator
    .env Parser & Validator
Ctrl+K

URL Parser

A tool that extracts and displays each component of a URL (protocol, username, password, hostname, port, path, anchor, parameters) in real-time when you enter a URL.

Enter a URL to extract components in real-time

How to use

About this tool

Parses URLs and displays scheme, host, path, query, fragment, and other components.

How to use

Enter or paste a URL; view components for easier editing and copying.

Use cases

• Inspecting/editing query strings • Understanding routing • Redirect checks • Normalization

FAQ

Q: What URL components does this tool parse?
A: The tool breaks a URL into: scheme (https), host (domain + port), pathname, query string (each key-value pair shown separately), and fragment (#hash). Each component is displayed and can be copied individually.
Q: Can I use this to edit query parameters?
A: Yes. Inspecting the parsed query parameters makes it easy to spot typos, missing values, or encoding issues. You can then edit the original URL and re-parse it to verify the change.
Q: What is the fragment (#) component used for?
A: The fragment identifies an anchor or section within a page (e.g. #section-2). It is processed entirely in the browser and is never sent to the web server. It is commonly used for single-page app routing and deep links.
Q: Does the tool handle percent-encoded characters in query strings?
A: Yes. Percent-encoded characters (e.g. %20 for space, %2F for /) in the query string and path are decoded and shown in human-readable form alongside the raw encoded value.
Q: Does this tool send my URL to a server?
A: No. All parsing is performed entirely in the browser using the standard URL Web API. Your URL is never sent to any server.