URL Encoder/Decoder

Encode and decode URLs and query strings

Examples

URL Encoding

Original:
https://example.com/search?q=hello world
Encoded:
https%3A%2F%2Fexample.com%2Fsearch%3Fq%3Dhello%20world

Special Characters

Original:
name=John Doe&[email protected]
Encoded:
name%3DJohn%20Doe%26email%3Djohn%40example.com

Common URL Encodings

Space
%20
!
%21
#
%23
$
%24
&
%26
+
%2B
=
%3D
?
%3F
@
%40
/
%2F
:
%3A
%
%25