URL Encoder/Decoder

Encode and decode URLs to ensure they are safe for the web

URL Encoder & Decoder

Simple tool to escape special characters in URLs (Percent-encoding).

Mode Difference

  • Component (encodeURIComponent): Encodes almost all characters (including / ? : @ & = + $ #). Use for query string parameters.
  • Full URL (encodeURI): Preserves URL structure. Use for encoding full URLs while keeping protocol and domain readable.