Skip to main content
Volver al Anterior

Codificador / Decodificador URL

Codifica o decodifica componentes URL, cadenas de consulta y URLs completas localmente en tu navegador.

Se ejecuta localmente. Los valores no se suben.
Operación
Longitud de entrada
0
Longitud de salida
0
Escapes porcentuales
0
Entrada
Salida
Encoding rule
encodeURIComponent(value) -> percent-encoded component
value
Text, query parameter, or path segment to encode
%HH
Hexadecimal byte escape used for reserved or non-ASCII characters
How this tool works
  1. Choose whether the input is a URL component or a full URL.
  2. Use browser-native URL encoding functions to convert reserved characters safely.
  3. Keep all processing in the browser so the URL text is not uploaded.
Worked examples

Query parameter

  • Input: LED display cost

LED%20display%20cost

Use component encoding for individual query values.

Full URL

  • Input: https://example.com/search?q=hello world

https://example.com/search?q=hello%20world

Use full URL encoding when the scheme and separators should remain readable.

FAQ