URL Encoder/Decoder

Encode and decode URLs with instant results. Perfect for handling URLs and query parameters.

Input

Output


                    

URL Encoding Information

encodeURI()

Encodes a complete URI, leaving reserved characters like :, /, ?, # intact.

encodeURIComponent()

Encodes URI components, encoding all characters that have special meaning in URIs.

decodeURI()

Decodes a complete URI that was encoded with encodeURI().

decodeURIComponent()

Decodes URI components that were encoded with encodeURIComponent().