DevTulz Online

מנתח 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

  1. Paste any URL into the input field.

  2. The tool parses and displays each component: protocol, host, port, path, query parameters, and fragment.

  3. Query parameters are shown both as a list of key-value pairs and as formatted JSON.

  4. 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-safe Base64 מחליף אותם ב-- ו-_ כך שהמחרוזת יכולה לשמש בבטחה בכתובות ובשמות קבצים ללא קידוד אחוזים.

למה הפלט שלי שפוענח נראה כמו הבל? אם הנתונים המקוריים היו בינאריים (כגון תמונה, PDF או קובץ דחוס), הפלט שפוענח לא יהיה טקסט קריא. במקרה זה, מחרוזת Base64 מייצגת קובץ בינארי, לא מחרוזת טקסט.

האם Base64 הוא סוג של הצפנה? לא. Base64 הוא סכימת קידוד, לא הצפנה. כל אחד יכול לפענח מחרוזת Base64 ללא מפתח. לעולם לא יש להשתמש בה כדי להגן על נתונים רגישים — השתמש בהצפנה נכונה לשם כך.

Keywords: URL parser online, parse URL components, URL analyzer, URL breakdown, query string parser, free URL parser