🔗 URL 인코더 / 디코더

URL과 쿼리 문자열을 즉시 인코딩 또는 디코딩해요

🔒 이미지가 기기 밖으로 나가지 않아요. 모든 처리는 encodeURIComponent / decodeURIComponent를 사용하여 브라우저에서 로컬로 이루어져요. 업로드, 서버, 추적이 없어요.

기능

  • Encode URLs — Percent-encode special characters for safe use in URLs and query strings.
  • Decode URLs — Convert percent-encoded strings back to readable text.
  • Unicode Support — Handles all Unicode characters including emoji, CJK, and special symbols.

작동 방식

  1. Enter text — Type or paste the text you want to encode or decode.
  2. Click Encode or Decode — The tool converts your input instantly.
  3. Copy the result — Copy the encoded or decoded output to your clipboard.

활용 사례

  • Encode query parameters for API URLs
  • Decode URLs copied from browser address bars
  • Prepare strings for use in HTTP requests

자주 묻는 질문

What characters are encoded?

All characters except A-Z, a-z, 0-9, and - _ . ~ are percent-encoded. This follows the RFC 3986 standard.

Does it handle full URLs?

It's best for encoding individual components (query values, path segments). For full URLs, encode each part separately to avoid double-encoding.

관련 도구