What is URL encoding?

URL encoding (percent-encoding) converts special characters into percent plus two hex digits. For example, a space becomes %20, and & becomes %26. This allows unsafe characters to appear in URLs and query strings. Use URL encoding when building query parameters, handling form data, or passing values in links. Decode when reading values from the URL.

Related tools

Back to Glossary

People Also Used