URL Encoder/Decoder

Convert text to and from URL encoding (percent encoding)

About URL Encoding

URL encoding (also known as percent encoding) is a mechanism to encode information in URLs that might otherwise be misinterpreted. Special characters are converted to percent-encoded values (e.g., spaces become %20). This is essential for safely including data in URLs, especially in query parameters and form submissions.

Common Examples:

Space → %20
! → %21
# → %23
$ → %24
% → %25
& → %26

Command Palette

Search for a command to run...