URL Encoder / Decoder
Convert text to percent-encoded form for URLs or decode encoded text back to human-readable strings. Everything runs locally in your browser so no data leaves the page.
What is URL encoding?
URL encoding (percent-encoding) replaces unsafe ASCII characters with a "%" followed by two hex digits.
For example, a space becomes %20. Decoding reverses the process.