Blitz Tools

URL Encoder / Decoder

Encode or decode URL strings using percent-encoding.

What is URL Encoding?

A quick overview

URL encoding, also known as percent encoding, turns characters into a%xx format so they can safely travel in web addresses. For example, a space becomes %20.

Why encode?

  • • Keeps URLs valid for browsers
  • • Prevents confusion with spaces or special symbols

Example

hello worldhello%20world