URL Encoder/Decoder

encodeURIComponent/decodeURIComponent in the browser for query strings and APIs.

{{ url.message }}

Overview

Avoid characters that break parameters. Useful when building links, redirects, and integration tests.

Tool guide

  • O que é URL encoding (percent-encoding) Caracteres reservados ou não ASCII em URLs são escritos como % seguido de dois dígitos hex (ex.: espaço como %20). Query strings e fragmentos precisam disso para não quebrar o parse.
  • O que a ferramenta faz Aplica encodeURIComponent / decodeURIComponent no texto.
  • Por que usar Montar links com nomes acentuados, depurar redirects, testar integrações com parâmetros especiais.

Query

nome=João Silva → nome=Jo%C3%A3o%20Silva

FAQ

What is this tool for?

It runs fully in your browser: useful to validate, format, or convert data in everyday development.

Are my inputs sent to a server?

Processing happens locally with JavaScript. We do not store what you paste into the text areas.

Can I use this for real production data?

Use at your own risk. For secrets (passwords, tokens), prefer controlled environments and your company policies. And always review the generated contents. Never trust blindly things you see on the internet.