FAST. PRIVATE. NO SIGN-UP.

URL Encoder / Decoder

Percent-encode text for a path or query component, or decode encoded values back into readable text without a server round trip.

TOOLMERA / DEVELOPER
URL Encoder / Decoder
Browser-first processing
Component mode uses encodeURIComponent/decodeURIComponent. Full URL mode keeps URL syntax characters such as : / ? & = available where appropriate.
Privacy-mindedBrowser-first whenever possible
Instant workflowNo setup or account required
Free core toolOpen it and get the task done
WHY TOOLMERA

Built to get the task done.

  • Component & full URL modes
  • Encode & decode
  • Browser-native APIs
ABOUT THIS TOOL

Free URL Encoder & Decoder — Percent-Encoding Tool

Encode or decode URL components and complete URLs locally with browser-native percent-encoding functions.

URL component vs. complete URL mode

Component mode is intended for a value that belongs inside a URL, such as a query parameter, path segment or search term. It encodes reserved syntax characters more aggressively.

Complete URL mode preserves structural URL characters such as colon, slash and question mark where the browser encoding function treats them as part of the URL syntax.

Percent-encoding is not encryption

Percent-encoding represents characters in a URL-safe form. Anyone who sees the encoded value can decode it.

Do not use URL encoding as a privacy or security mechanism for secrets, credentials or sensitive data.

HOW IT WORKS

How to use URL Encoder / Decoder

01

Choose URL component or full URL

Component mode encodes values such as query parameters; full URL mode preserves URL syntax where appropriate.

02

Paste the value

Enter plain text to encode or percent-encoded text to decode.

03

Encode, decode and copy

Run the browser-native operation and copy the output into your next workflow.

KEEP GOING

Related tools

Useful next steps in the same workflow.

FAQ

Common questions

What does %20 mean in a URL?

It is the percent-encoded representation of a space character.

Should I use component or complete URL mode?

Use component mode for query values or individual path segments. Use complete URL mode when the input is a full URL and you want to preserve its syntax.

Can decoding fail?

Yes. Invalid or incomplete percent sequences can cause the browser decoder to reject the input.

Is URL encoding secure?

No. It is a transport encoding, not encryption.