Encode or decode strings into secure URL-friendly format. Perfect for query parameters and API calls.
Tip: URL encoding converts special characters to a format that can be safely transmitted over the internet.
For example, spaces become %20 and @ becomes %40.
URL encoding (also known as percent-encoding) is a mechanism for encoding information in a Uniform Resource Identifier (URI) under certain circumstances. It converts characters that are not allowed in a URL into a format that can be transmitted over the internet.
| Character | Encoded Value | Description |
|---|---|---|
(space) |
%20 |
Space character |
! |
%21 |
Exclamation mark |
" |
%22 |
Double quote |
# |
%23 |
Hash/Number sign |
$ |
%24 |
Dollar sign |
% |
%25 |
Percent sign |
& |
%26 |
Ampersand |
@ |
%40 |
At symbol |
? |
%3F |
Question mark |
+ |
%2B |
Plus sign |
Your data never leaves your browser. All processing is done locally for maximum privacy.