%_
URL ENCODER

URL Encoder

Encode or decode text for individual URL query parameter values.

Local processing
Workspace
0 characters
Read only
Ready. Enter your content, then choose an action.
◇ Content is processed in this browser onlyInput is not saved automatically
HOW TO USE

How to use

This tool uses URI component encoding, suitable for one query parameter value. Encode the value before inserting it into a URL, or decode it to recover the original text.

Example

hello world → hello%20world; a+b → a%2Bb.

GOOD TO KNOW

Keep in mind

Encoding a whole URL also encodes separators such as :, /, ? and &. Spaces become %20. A literal + remains + when decoding; form-style spaces are handled by the Query String Parser.

Common questions

Why is there a URI error? Each % must be followed by two hexadecimal digits, and the bytes must form valid UTF-8. Avoid copying only part of an encoded sequence.