A
AllKit

URL Encode / Decode

Encode and decode URLs and query strings instantly. Supports encodeURIComponent and encodeURI.

100% Client-Side — Your data never leaves your browserFree — No signup required
encodeURIComponent — encodes all special characters

Common URL Encodings

space%20
!%21
#%23
$%24
&%26
+%2B
/%2F
:%3A
=%3D
?%3F
@%40
%%25

Need API access to URL Encode / Decode?

Integrate this tool into your workflow with our REST API. 3 free requests/day, unlimited with Pro.

View API Plans

What is URL Encode / Decode?

Encode and decode URLs, query parameters, and special characters instantly. Choose between encodeURIComponent (encodes everything) and encodeURI (preserves URL structure). Includes a reference table of common URL encodings. All processing happens in your browser — no data is sent to any server.

AllKit's URL Encode / Decode is completely free with no signup required. All processing happens directly in your browser — your data is never sent to any server, making it safe for sensitive information.

Why use AllKit?

  • No ads, no distractions — a clean interface that lets you focus on the task
  • Privacy-first100% client-side processing, nothing is uploaded
  • Free forever — core tools are free with no usage limits
  • API available — integrate into your workflow via our REST API

Frequently Asked Questions

Why do URLs need encoding?

URLs can only contain a limited set of ASCII characters. Special characters like spaces, &, =, and non-ASCII characters must be percent-encoded (e.g., space becomes %20) to be safely transmitted in URLs.

What's the difference between encodeURI and encodeURIComponent?

encodeURI preserves URL-structural characters like :, /, ?, # — use it for complete URLs. encodeURIComponent encodes everything except letters and digits — use it for query parameter values.

What is percent encoding?

Percent encoding (also called URL encoding) replaces unsafe characters with a % followed by their hexadecimal ASCII value. For example, a space becomes %20, & becomes %26.

Related Tools