URL 파서
구성 요소를 보려면 URL을 입력하십시오:
URL 파서
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.
자주 묻는 질문
여기서 민감한 데이터를 디코딩하는 것이 안전한가요? 네. 모든 디코딩은 브라우저에서 JavaScript를 사용하여 수행됩니다. 어떤 데이터도 서버로 전송되지 않으므로 인코딩된 문자열은 완전히 비공개로 유지됩니다.
Base64와 URL-safe Base64의 차이점은 무엇인가요? 표준 Base64는 URL의 특수 문자인 +와 / 문자를 사용합니다. URL-safe Base64는 이들을 -와 _로 바꾸어 문자열을 URL과 파일명에서 percent-encoding 없이 안전하게 사용할 수 있습니다.
내 디코딩된 결과가 왜 이상한 문자처럼 보이나요? 원본 데이터가 이진 형식(이미지, PDF 또는 압축 파일 등)인 경우, 디코딩된 결과는 읽을 수 있는 텍스트가 아닙니다. 이 경우 Base64 문자열은 텍스트 문자열이 아닌 이진 파일을 나타냅니다.
Base64는 암호화의 한 형태인가요? 아니요. Base64는 암호화가 아닌 인코딩 방식입니다. 누구나 키 없이 Base64 문자열을 디코딩할 수 있습니다. 민감한 데이터를 보호하기 위해 사용되어서는 안 됩니다 — 그 목적으로는 적절한 암호화를 사용하세요.
Keywords: URL 파서 온라인, URL 구문 분석, URL 구성 요소, URL 분석, URL 부분, 무료 URL 도구