محلل 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. يستبدل Base64 الآمن للـ URL هذه الأحرف بـ - و _ حتى يمكن استخدام النص بأمان في عناوين URL وأسماء الملفات دون ترميز النسب المئوية.
لماذا يبدو الناتج المفكك الخاص بي وكأنه هراء؟ إذا كانت البيانات الأصلية بيانات ثنائية (مثل صورة أو PDF أو ملف مضغوط)، فإن الناتج المفكك لن يكون نصاً قابلاً للقراءة. في هذه الحالة، تمثل سلسلة Base64 ملفاً ثنائياً وليس سلسلة نصية.
هل Base64 شكل من أشكال التشفير؟ لا. Base64 هو مخطط ترميز وليس تشفير. يمكن لأي شخص فك ترميز سلسلة Base64 دون مفتاح. لا يجب استخدامه أبداً لحماية البيانات الحساسة — استخدم التشفير الصحيح لهذا الغرض.
Keywords: URL parser online, parse URL components, URL analyzer, URL breakdown, query string parser, free URL parser