브라우저에서 URL 쿼리 문자열을 JSON으로 파싱하고 JSON에서 쿼리 문자열을 생성합니다.
쿼리 문자열 사용 방법
방향을 선택하세요: 쿼리 → JSON 또는 JSON → 쿼리.
쿼리 문자열(?를 포함하거나 제외)이나 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을 붙여넣을 수 있습니다.
네. 퍼센트 인코딩된 값은 파싱 시 디코딩되고 쿼리 문자열을 생성할 때 다시 인코딩됩니다.
이 도구 임베드하기
이 도구를 직접 운영하는 웹사이트에 추가하세요. 아래 코드를 복사하면 자동으로 최신 상태로 유지됩니다.
<iframe src="https://monu.tools/embed/ko/query-string-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>관련 도구