Decode URL-encoded (percent-encoded) strings instantly.
Use the API directly for programmatic access:
curl "https://ai.doxx.lat/api/url/decode?text=Hello%2520World"
curl "https://ai.doxx.lat/api/encode?text=Hello%2520World&type=url&decode=true"
URL encoding (percent-encoding) replaces unsafe characters with a % followed by two hex digits. For example, spaces become %20, and special characters like ? become %3F.
URL decoding is needed when reading query parameters, processing form data, debugging API requests, or handling any URL-encoded content from web applications.
Yes. This decoder properly handles multi-byte UTF-8 sequences, so international characters, emoji, and special symbols are decoded correctly.