נתחו query string של כתובת URL ל-JSON ובנו query string מ-JSON, בדפדפן שלכם.
כיצד להשתמש ב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.
שאלות נפוצות
מפתח שמופיע יותר מפעם אחת, כמו tag=a&tag=b, הופך למערך ב-JSON, ומערכים ב-JSON מתרחבים בחזרה לפרמטרים חוזרים.
כן. בעת המרה ל-JSON, כל מה שלפני ה-? מתעלמים ממנו, כך שתוכלו להדביק כתובת URL שלמה.
כן. ערכים מקודדי אחוזים (percent-encoded) מפוענחים בעת הניתוח ומקודדים שוב בעת בניית query string.
הטמע את הכלי הזה
הוסף את הכלי הזה לאתר שלך. העתק את קטע הקוד שלהלן; הוא מתעדכן אוטומטית.
<iframe src="https://monu.tools/embed/he/query-string-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>כלים קשורים
צרו וחתמו JSON Web Tokens מסוג HS256 מתוך payload וסוד, הכול בתוך הדפדפן שלכם.
חפשו ואתרו קודי סטטוס HTTP ואת משמעותם, מ-1xx ועד 5xx.
המירו קובץ .env ל-JSON ו-JSON חזרה ל-.env, בשני הכיוונים, הכול בתוך הדפדפן שלכם.
צרו HMAC עבור הודעה ומפתח סודי באמצעות SHA-1, SHA-256, SHA-384 או SHA-512, בדפדפן שלכם.