Conversor de URL

Codificar URLs e texto para transmissão na Web segura

Modo:
Tipo:
Codificação de informações

Codificação de componentes: codifica caracteres especiais em parâmetros de URL (mais comum)

Codificação completa de URI: codifica apenas os caracteres não permitidos nos URIs (preserva a estrutura da URL)

Texto de entrada/URL

Saída codificada por URL

Os dados codificados da URL aparecerão aqui

URL Encoder & Decoder - Online URL Tool

A URL encoder/decoder converts between human‑readable text and percent‑encoded forms so reserved characters travel safely in query strings and paths. Use this tool to debug redirects, normalize query parameters, and prepare values for APIs and OAuth callbacks without double‑encoding.

What is URL encoding?

URLs can safely carry only a subset of ASCII. Characters like spaces, quotes, and non‑ASCII glyphs must be percent‑encoded as %HH hex bytes. For example, space becomes %20, ü in UTF‑8 becomes %C3%BC. Decoding reverses this for display.

How to use it

Paste a string or query component to encode or decode it. The converter uses UTF‑8 and preserves reserved characters appropriately so your output matches browser and server implementations. It’s ideal for building canonical query strings, sanitizing logs, and fixing broken redirects.

About the URL Converter

Use this utility to debug redirects, build query strings, and sanitize logs before sharing. Accurate encoding prevents subtle bugs and security issues caused by ambiguous characters.

Further reading

Correct URL handling is foundational for web reliability and security. Use this page to verify edge cases and standardize behavior across services.