> For the complete documentation index, see [llms.txt](https://cryptography.mrw0l05zyn.cl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cryptography.mrw0l05zyn.cl/encoding-codificacion/url-encoding.md).

# URL encoding

## Descripción

URL encoding funciona reemplazando todos los caracteres de URL prohibidos (especiales) con el signo `%` seguido del valor ASCII hexadecimal del carácter especificado.

## Conversiones

```python
python3 -q
import urllib.parse
urllib.parse.quote("<text>", safe="")
urllib.parse.unquote("<encoded-text>")
```
