URL-jäsennin
Anna URL-osoite nähdäksesi sen osat:
URL-jäsennin
What is a URL Parser?
A URL (Uniform Resource Locator) has a well-defined structure with multiple components: protocol/scheme (https://), username and password (for authenticated URLs), hostname (example.com), port (:8080), path (/blog/article), query string (?id=123&page=2), and fragment (#section). Parsing a URL breaks it apart into these components, making it easy to inspect, modify, or debug. This is useful when debugging API requests, understanding redirect chains, inspecting tracking URLs, or when you need to programmatically extract parts of a URL.
How to Use the URL Parser
-
Paste any URL into the input field.
-
The tool parses and displays each component: protocol, host, port, path, query parameters, and fragment.
-
Query parameters are shown both as a list of key-value pairs and as formatted JSON.
-
Copy individual components as needed.
This URL parser runs entirely in your browser using the built-in URL API — no data is sent to any server. Handles all URL formats including URLs with authentication, non-standard ports, IPv6 addresses, and complex query strings. Useful for API debugging, security analysis, and URL construction.
Usein kysytyt kysymykset
Onko turvallista purkaa arkaluonteisia tietoja täällä? Kyllä. Kaikki purkaminen tapahtuu selaimessasi JavaScriptin avulla. Mitään tietoa ei lähetetä millekään palvelimelle, joten koodatut merkkijonot pysyvät täysin yksityisinä.
Mikä on ero Base64:n ja URL-turvallisen Base64:n välillä? Standardi Base64 käyttää + ja / -merkkejä, jotka ovat erikoismerkkejä URL-osoitteissa. URL-turvallinen Base64 korvaa ne - ja _ -merkeillä, jotta merkkijonoa voidaan käyttää turvallisesti URL-osoitteissa ja tiedostonimissä ilman prosenttikoodausta.
Miksi purettu tulokseni näyttää sekavalta? Jos alkuperäinen data oli binaarista (kuten kuva, PDF tai pakattu tiedosto), purettu tulos ei ole luettavaa tekstiä. Siinä tapauksessa Base64-merkkijono edustaa binaaritiedostoa, ei tekstimerkkijonoa.
Onko Base64 salauksen muoto? Ei. Base64 on koodausjärjestelmä, ei salaus. Kuka tahansa voi purkaa Base64-merkkijonon ilman avainta. Sitä ei koskaan pidä käyttää arkaluonteisten tietojen suojaamiseen - käytä oikeaa salausta siihen.
Keywords: URL parser online, parse URL, URL components, analyze URL, URL parts, free URL tool