URL 파서
「URL 파서」는 코드, 데이터 및 QR 작업을 위한 브라우저 도구입니다. 입력과 결과는 일반적으로 이 기기에서 처리되며 가입이 필요하지 않습니다.
사용 방법
사용 방법
- Paste an absolute URL, including its protocol when possible.
- Choose Parse URL to inspect each component and query parameter.
- Copy the normalized URL or an individual component when you need it elsewhere.
A local URL inspection tool
Parsing happens entirely in your browser with the built-in URL and URLSearchParams APIs. The pasted address is never opened, fetched, resolved, or sent to a server.
What gets displayed
Review the normalized URL, origin, protocol, username, port, hostname, pathname, search, hash, and each decoded query parameter. Values remain text; parsing does not validate that a destination exists or is safe.
자주 묻는 질문
더 알아보기
Does this open the URL?
No. It only parses the text you paste. No network request is made.
Why does the normalized URL differ from my input?
The standard URL parser applies URL syntax rules such as lowercasing a hostname, resolving dot segments, and serializing query parameters consistently.
Can I parse a relative path?
Enter an absolute URL with a protocol, such as https://example.com/path. Relative paths need a base URL, which this tool does not invent.