URL Encoder / Decoder

Encode or decode URL strings for safe transmission

Input

Enter a URL or encoded string

About URL Encoding

URL encoding converts special characters into a format that can be safely transmitted over the internet. Spaces become %20, special characters are converted to their hexadecimal representation.

Common Encoded Characters:

Space → %20
! → %21
# → %23
$ → %24
& → %26
/ → %2F
: → %3A
? → %3F

Common Uses:

  • URL query parameters
  • API requests with special characters
  • Form data submission
  • Safe file naming
Missing something? Request a New Tool