Online URL Encode and Decode

Full screen

Tool Introduction

Online URL encoding and decoding tools

URL encoding and decoding, also known as percent encoding, is a uniform resource location encoding method.

The URL address specifies common numbers, letters can be used directly, and another batch of special user characters can also be used directly (/,:@, etc.), and all other characters must be processed by %xx encoding.

To make URLs containing special characters usable, you can use this tool to UrlEncode Chinese.

JS native escape just converts special characters to unicode encoding.

encodeURI or encodeURIComponent also re-encodes the url encoded by unicode for special characters.

This tool is implemented using JS and can be perfectly compatible with each browser.