./prontouso.com
WEB & JARINGAN

Penganalisis Komponen URL

Analisis struktur tautan URL secara terperinci: uraikan protokol, domain, subdomain, port, path, parameter query string, hash anchor, dan periksa parameter pelacak.

Status alatBerjalan di browser Anda
Pratinjau

URL Parser

Hasil

Protocolhttps:
Hostexample.com:8080
Hostnameexample.com
Port8080
Path/path/to/page
Query string?query=123
Fragment#section
Usernameuser
Passwordpass

Query parameters

query123

Cara kerja

  1. Masukkan data Anda

    Isi nilai yang diperlukan, tempel teks Anda, atau unggah file yang ingin diproses.

  2. Lihat hasil seketika

    Sebagian besar alat diperbarui secara langsung saat Anda mengetik; beberapa menggunakan satu tombol tindakan.

  3. Gunakan hasil Anda

    Salin, unduh, atau bagikan hasil yang dihasilkan — Anda selalu memiliki kendali penuh atas data Anda.

Privasi dan pemrosesan dataBerjalan secara lokal di browser Anda. Alat ini tidak mengunggah data Anda.

Apa itu Penganalisis Komponen URL?

Paste any URL to see its protocol, host, path, query parameters, and fragment listed separately.

PAHAMI CARA KERJA ALAT

How to break a URL into its parts

What each part means

  • Protocol — the scheme, such as https:.
  • Host — hostname plus port, if one is set.
  • Path — everything after the host, before the query string.
  • Query string — the part after ?, also broken down parameter by parameter.
  • Fragment — the part after #, used for in-page anchors.

URLs without a protocol

A browser's URL parser requires a scheme to work at all. If you paste something like "example.com/path" with no https:// or http://, this tool assumes https:// so it still parses — a note appears when that happens.

How to use it

  • Paste or type a URL into the input box.
  • Every component updates immediately below.
  • Any query parameters appear in their own table.

Bare domain example

Assumed scheme

If you enter example.com/path?x=1, the parser retries it as an HTTPS URL so hostname, path, and query parameters can still be inspected.

example.com/path?x=1 -> https://example.com/path?x=1

URL parsing notes

The parser uses the browser URL API and assumes https:// for bare hosts. It does not open, fetch, or validate the destination.

Pertanyaan yang Sering Diajukan (FAQ)

Why does it add https:// automatically?

Because the underlying URL parser can't interpret a URL with no scheme at all. Assuming https:// (today's overwhelming default) lets a bare domain still be inspected, with a note shown so it's clear a guess was made.

Does it decode percent-encoded characters?

The path and query values are shown as the browser's URL parser exposes them, which already decodes standard percent-encoding in most fields.

Is the URL I paste sent anywhere?

No. Parsing happens locally using the browser's own URL API; nothing is sent to a server.

Does parsing a URL send a request?

No. It only uses the browser URL parser. The destination is not opened or fetched.