URL query string को JSON में पार्स करें और JSON से query string बनाएं, आपके ब्राउज़र में।
Query String का उपयोग कैसे करें
एक दिशा चुनें: query से JSON या JSON से query।
query string (? के साथ या बिना) या JSON ऑब्जेक्ट पेस्ट करें।
परिणाम कॉपी करें, या वापस कनवर्ट करने के लिए स्वैप करें।
A query string converter that turns the parameters in a URL into a readable JSON object, and builds a query string back from JSON. It decodes values, and treats repeated keys as arrays in both directions.
It runs locally in your browser, so the URLs you inspect, which can contain tokens or personal data, never leave your device.
A query string is the part of a URL after the question mark, like ?q=shoes&page=2, a list of key-value pairs that pass data to a page or API. They drive search results, filters, pagination and tracking.
When a key appears more than once, such as tag=a&tag=b, it becomes an array in the JSON so no values are lost, and a JSON array expands back into repeated parameters when you build the string.
You can paste a whole URL when converting to JSON: anything before the question mark is ignored, so you do not have to trim it first. This makes it quick to inspect the parameters of a link from your address bar.
Percent-encoded values are decoded when parsing so you can read them, and encoded again when building a query string so the result is valid, which keeps spaces and special characters correct.
अक्सर पूछे जाने वाले सवाल
एक से अधिक बार दिखाई देने वाली key, जैसे tag=a&tag=b, JSON में ऐरे बनती है, और JSON में ऐरे दोहराए गए parameters में विस्तारित होते हैं।
हां। JSON में कनवर्ट करते समय, ? से पहले सब कुछ नजरअंदाज किया जाता है, इसलिए आप पूरा URL पेस्ट कर सकते हैं।
हां। Percent-encoded values पार्स करते समय डिकोड और query string बनाते समय पुनः एन्कोड होते हैं।
इस टूल को एम्बेड करें
इस टूल को अपनी वेबसाइट में जोड़ें। नीचे दिया स्निपेट कॉपी करें; यह अपने आप अपडेट रहता है।
<iframe src="https://monu.tools/embed/hi/query-string-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>संबंधित टूल
पेलोड और सीक्रेट से HS256 JSON Web Token बनाएं और साइन करें, पूरी तरह आपके ब्राउज़र में।
HTTP स्टेटस कोड और उनके अर्थ खोजें और देखें, 1xx से 5xx तक।
.env फ़ाइल को JSON में और JSON को वापस .env में बदलें, दोनों दिशाओं में, पूरी तरह आपके ब्राउज़र में।
SHA-1, SHA-256, SHA-384 या SHA-512 का उपयोग करके संदेश और सीक्रेट key के लिए HMAC जनरेट करें, आपके ब्राउज़र में।