URL 인코더 / 디코더
웹 주소에서 안전하게 사용할 수 있도록 URL 구성요소를 인코딩하거나 디코딩합니다.
How to Use
- 1
Paste your text or URL into the input field.
- 2
Click Encode to percent-encode special characters, or Decode to convert percent-encoded strings back.
- 3
Copy the result with the copy button.
Features
RFC 3986 Compliant
Uses JavaScript's encodeURIComponent for standard percent-encoding compliant with RFC 3986.
Encode & Decode
Easily switch between encoding plain text to a URL-safe format and decoding encoded strings.
Handles Special Characters
Correctly encodes spaces, ampersands, equals signs, and other characters that are unsafe in URLs.
Instant Processing
Encoding and decoding happens instantly in your browser with no server requests.
FAQ
언제 URL 인코딩이 필요한가요?
URL 매개변수나 쿼리 문자열에 특수 문자(공백, &, = 등)를 전달할 때 필요합니다.
어떤 인코딩 표준을 사용하나요?
JavaScript의 encodeURIComponent 함수를 통한 표준 퍼센트 인코딩(RFC 3986)을 사용합니다.