Tiny Online Tools logoTiny Online ToolssearchRechercher des outils…grid_viewTous les outils
Accueilchevron_rightOutils Developpeurchevron_rightDécodeur URLDécodeur URL

Décodeur URL

Décode les URLs encodées.

Outils similaires

Encodeur URL

Encodeur URL

Encode les URLs pour une transmission sécurisée.

Décodeur Base64

Décodeur Base64

Décode du texte encodé en Base64.

Base64 vers Image

Base64 vers Image

Décodez des chaînes Base64 en fichiers image.

Formateur JSON

Formateur JSON

Formate et embellit les données JSON.

Générateur NanoID

Générateur NanoID

Générez des identifiants uniques compacts et sûrs pour les URL avec un alphabet et une taille personnalisables.

Scanner de ports (local)

Scanner de ports (local)

Outil local de sondage des ports via des requetes navigateur.

Outil de justification de texte

Outil de justification de texte

Justifiez du texte pour aligner les lignes sur une largeur fixe.

apps

Plus d'outils

Parcourez notre collection complète d'outils en ligne gratuits.

Décode Percent-Encoded URLs & Query Strings

URLs can't contain certain characters—spaces, special punctuation, non-ASCII characters. So navigateurs and servers percent-encode them: replacing special characters with % followed by their hexadecimal code. A space becomes %20, a slash becomes %2F, and emoji become multi-character sequences. When you copy URLs from navigateurs or logs, they often appear heavily encoded and are nearly unreadable. This URL Décoder instantly Transformes them back to human-readable form.

Drop in an encoded URL or query string and see the original, Décoded version immediately.

What Gets Décoded

Percent-Encoded Characters: Any %XX sequence (where XX is hex) Convertits back to its character:

  • %20 → space
  • %2F/
  • %3A:
  • %26&
  • And so on for all 256 possible byte values

Unicode Sequences: Multi-byte UTF-8 encoded characters (like emoji or non-ASCII characters) are properly reassembled from their percent-encoded parts.

Preserves Structure: The rest of the URL (scheme, domain, path, fragment) remains intact, so you get a fully readable URL.

Why You Need This

URL Inspection: Navigateur address bars often show Décoded URLs, but logs, API responses, and HTTP headers show encoded versions. Decoding makes them readable for debugging.

API Debugging: When inspecting API requests and responses, URLs are percent-encoded. Décode them to understand what URLs were being called and what parameters were sent.

Log Analysis: Server logs, navigateur console logs, and request logs all contain percent-encoded URLs. Decoding helps you quickly understand which resources were accessed.

Query Parameter Inspection: URL query strings are heavily encoded. Décode the entire URL to see parameter names and values clearly:

  • Encoded: https://example.com/search?q=hello%20world&category=tech%2Fai
  • Décoded: https://example.com/search?q=hello world&category=tech/ai

Redirect Debugging: When investigating redirects, encoded redirect URLs are hard to read. Décode them to understand where the redirect goes.

Error Reporting

If the URL contains malformed encoding (odd number of hex digits after %, invalid hex characters, etc.), the tool reports the specific error. This helps you identify and fix encoding issues.

Common Debugging Scenarios

Network Tab Inspection: Copy a URL from the navigateur DevTools Network tab (which shows encoded URLs) and paste it here to read it clearly.

CI/CD Logs: Deployment logs often contain percent-encoded URLs. Décode them to verify the right resource was accessed.

Email URLs: URLs in emails are sometimes encoded. Décode to verify they're safe before clicking.

Database Content: If URLs are stored in your database, they may be encoded. Décode them for readability and verification.

OAuth & API Flows: Redirect URLs in OAuth flows and API documentation are often percent-encoded. Décode to understand the flow.

One-Click Copy

Décoded output copies to your presse-papiers with a single click. Paste directly into your navigateur, documentation, or testing tools.

100% Local Decoding

Decoding happens entirely in your navigateur using standard JavaScript functions. Your URLs never leave your machine, so you can safely Décode URLs containing sensitive inFormateion, internal paths, or proprietary data.