HubTools

URL Encoder/Decoder

Encode and decode URLs and URL components with different encoding options

Full URLComponentsQuery Params

URL Encoder/Decoder

Encode and decode URLs and URL components with support for different encoding types

Common Character Encodings

CharacterEncodedDescription
%20Space
!%21Exclamation
"%22Double quote
#%23Hash
$%24Dollar
%%25Percent
&%26Ampersand
'%27Single quote
(%28Left parenthesis
)%29Right parenthesis
*%2AAsterisk
+%2BPlus
,%2CComma
/%2FSlash
:%3AColon
;%3BSemicolon
<%3CLess than
=%3DEquals
>%3EGreater than
?%3FQuestion mark
@%40At sign
[%5BLeft bracket
\%5CBackslash
]%5DRight bracket
^%5ECaret
{%7BLeft brace
|%7CPipe
}%7DRight brace
~%7ETilde

Options

About URL Encoding

URL encoding (percent-encoding) converts characters into a format that can be transmitted over the Internet. It's used for:

  • • Encoding special characters in URLs
  • • Handling spaces and non-ASCII characters
  • • Query string parameters
  • • Form data submission
  • • API requests with special characters

Different encoding types serve different purposes: Full URL encoding for complete URLs, component encoding for path segments, and parameter encoding for query strings.