URL エンコーダとデコーダ
安全な伝送のためのURLのエンコードおよびデコード
🔤Caracteres especiales codificados
ℹ️¿Cuándo usar?
- ✓ Pasar parámetros en URLs
- ✓ Crear enlaces seguros
- ✓ Enviar datos en formularios
- ✓ Compartir URLs con caracteres especiales
💡Acerca de la codificación URL
La codificación URL (también llamada percent-encoding) convierte caracteres especiales en un formato que puede ser transmitido de forma segura a través de Internet.
Ejemplo: "hola mundo" se convierte en "hola%20mundo" (el espacio se reemplaza por %20)
Los caracteres seguros (A-Z, a-z, 0-9, -, _, ., ~) no se codifican. Todo lo demás se convierte a su representación hexadecimal precedida por %.
URL Encoder encodes and decodes URLs for safe transmission across the internet. Convert special characters to percent-encoded format (%20 for space, etc.). Essential for passing parameters in URLs, creating query strings, and web development.
Características Principales
URL encoding (safe percent-encoding)
URL decoding
Special character handling
Character count display
Error handling
Copy functionality
How to Use URL Encoder
Select Mode
Choose encode to convert text to URL-safe format or decode to revert
Enter Text
Paste your URL or text to process
Process
Click encode or decode to convert
Copy Result
Copy the encoded/decoded URL for use
Casos de Uso
Encode query parameters for safe URL construction
Decode URLs to see actual parameter values
Prepare URLs with special characters for sharing
Debug URL-related issues in web applications
Preguntas Frecuentes
Why encode URLs?
Encoding converts unsafe characters to percent-encoded format so URLs transmit correctly without breaking.
What characters need encoding?
Spaces and special characters like &, =, ?, #, %, etc. Safe characters (A-Z, a-z, 0-9, -, _, ., ~) don't need encoding.
What does %20 mean?
%20 is the encoded representation of a space character in URLs.