URL 디코딩 도구

브라우저에서 바로 URL 매개변수를 쉽게 디코딩할 수 있습니다.

디코딩 옵션

URL 디코딩 정보

URL 디코딩이란 무엇입니까?

URL 디코딩은 URL로 인코딩된 문자를 원래 형식으로 다시 변환합니다. URL은 ASCII 문자 집합을 사용해서만 인터넷을 통해 보낼 수 있으므로 특수 문자는 "%" 다음에 두 개의 16진수를 사용하여 인코딩됩니다.

URL decoding reverses this process, converting encoded characters (like "%20" for a space) back into their original form, making the URL human-readable and easier to process programmatically.

일반적인 사용 사례

  • 웹 양식에서 받은 URL 매개 변수 디코딩
  • 웹 응용 프로그램에서 쿼리 문자열 처리Processing query strings in web applications
  • API 응답 URL 디코딩
  • 인코딩된 URL 디버깅
  • 레거시 시스템에서 인코딩된 데이터 작업

URL 디코딩 예제

특수 문자

%20 → Space ( )
%3F → Question mark (?)
%26 → Ampersand (&)
%3D → Equals sign (=)
%2B → Plus sign (+)

복잡한 예제

Before: https%3A%2F%2Fexample.com%2Fsearch%3Fquery%3Dhello%2520world%26category%3Dbooks%26price%3D%252420-%252430  After: https://example.com/search?query=hello world&category=books&price=$20-$30

Related Tools