Code Flick TechnologiesToolscodeftech.com

URL Encode / Decode

Encode text for safe use in URLs, or decode percent-encoded strings back to readable text. Browser-only.

100% in your browser. Files never uploaded.
Encoding scope

Use Component for query parameters and path segments. Use Full URL when you have a complete URL and only want reserved-character escaping.

Result will appear here.

How to use

  1. 1
    Pick mode and scope
    Encode or decode. Component (for query params) or full URL.
  2. 2
    Type or paste
    Result updates as you type.
  3. 3
    Copy
    One click to copy the result.

FAQ

Component vs Full URL?
encodeURIComponent escapes everything that's reserved in URLs (including / : ? & =) — use it for individual query parameter values. encodeURI is more permissive and intended for whole URL strings — / : etc. are left alone.
Is my input sent anywhere?
No. Encoding/decoding uses the browser's native APIs.

Related tools