🔗 URL 인코딩/디코딩

URL 인코딩 디코딩, 특수 문자 및 중국어 파라미터 처리

이 도구 정보

URL encode/decode tool for special characters and Chinese parameters, using encodeURIComponent/decodeURIComponent to prevent garbled text.

How to use

  1. Enter a URL or text to encode/decode
  2. Click "Encode" or "Decode"
  3. Use the result in request params or links

Example

"你好 world" encodes to %E4%BD%A0%E5%A5%BD%20world.

FAQ

Why does a URL need encoding?

URLs only support ASCII. Chinese, spaces and special chars need percent-encoding to transmit correctly.

encodeURIComponent vs encodeURI?

The former encodes reserved chars (& = ?), ideal for parameter values; the latter keeps URL structure. This tool uses the former.