URL 인코더 & 디코더
「URL 인코더 & 디코더」는 코드, 데이터 및 QR 작업을 위한 브라우저 도구입니다. 입력과 결과는 일반적으로 이 기기에서 처리되며 가입이 필요하지 않습니다.
사용 방법
사용 방법
- Paste a URL component up to 100,000 characters.
- Choose Encode component or Decode component.
- Review the transformed value and copy it.
Components, not full URLs
This tool uses encodeURIComponent and decodeURIComponent. Use it for an individual query value, path segment, or fragment value; encoding an entire URL would also escape its structural colon and slashes.
Decode carefully
Malformed percent escapes cannot be decoded and produce an error. A plus sign is left as a plus sign because this tool follows JavaScript component encoding rather than form-url-encoded rules.
자주 묻는 질문
더 알아보기
Should I paste a full URL?
No. Paste the component you want to encode or decode, such as one query value.
Does plus become a space?
No. A plus sign remains a plus sign with encodeURIComponent and decodeURIComponent.
Why did decoding fail?
The input has malformed percent escapes or an invalid encoded character sequence.