Reading percent - encoded values from logs
Debug logs often show parameters like `%EA%...`. Decoding reveals the real keyword or parameter so you can reproduce the request accurately.
Encode or decode URLs and query strings instantly. Handle special characters safely in URLs.
URLs and query strings break easily when they contain spaces, emoji, or reserved characters like &, =, ?, and #. Encoding the right part of the string keeps links safe when you pass them between forms, APIs, redirects, and tracking tools.
Paste a full URL or a parameter value, then encode or decode to confirm what is actually being sent.
URLs and query strings must safely represent characters that are not allowed in plain form, such as spaces, non - ASCII letters, and reserved symbols. When you inspect logs or debugging screens, you may see percent - encoded values that are hard to read. When you build links, leaving characters unencoded can lead to broken requests or unexpected parsing.
Encoding and decoding helps you move between “human - readable” values and “URL - safe” values with fewer errors.
You can validate link parameters and reproduce issues more reliably by working with the exact encoded value. This is useful for redirects, UTM parameters, and search queries.
It also reduces the risk of double - encoding or partial encoding, which often causes bugs where parameters look correct but decode incorrectly on the server side.
Debug logs often show parameters like `%EA%...`. Decoding reveals the real keyword or parameter so you can reproduce the request accurately.
When a parameter itself contains a URL or special characters, encoding is required. Encoding the inner value helps prevent truncation and parsing errors in different environments.
Recommended if you: - debug query strings and redirects - handle non - ASCII characters or reserved symbols in URLs - build tracking links and need stable parameters - investigate “works in one place, breaks in another” link issues
All processing happens in your browser. Your data is never sent to our servers.
Decode JWT header and payload instantly. No verification, no server upload. Works in your browser.
Convert JSON to YAML or YAML to JSON instantly. Runs in your browser with no upload.
Generate random UUIDs (v4) and GUIDs instantly. Create unique identifiers for databases, APIs, and applications.