URL Encoder

Oct 1, 2017

URL Encoder is used to encode or escape text that is normally unsafe for transmission in URL.

Input: Paste plain text below

Decode portions of URLs that have been encoded using URL encoding & download the output, all on the client side

View Tool

Certain characters need to be encoded (escaped) in URL. This is also called as Percent encoding. Read more at wikipedia

Example Substitutions
Common characters after percent-encoding (ASCII or UTF-8 based)
CharacterEncoded Value
newline %0A or %0D or %0D%0A
space %20
" %22
% %25
- %2D
. %2E
< %3C
> %3E
\ %5C
^ %5E
_ %5F
` %60
{ %7B
| %7C
} %7D
~ %7E

How to do URL encoding in various programming languages

Comments 0

History
Aug 20, 2017
Tool Launched