Common uses
What you can do here
- Format JSON before debugging
- Escape HTML snippets for docs
- Decode JWT payloads locally
Browse by category
Small practical utilities for debugging payloads, preparing snippets and cleaning structured text during development.
Common uses
FAQ
No. It decodes JWT header and payload content only. It does not verify whether a token is trusted.
Avoid pasting secrets into any web tool. These utilities run locally, but sensitive secrets should still be handled carefully.
Developer tools
Format, validate and beautify JSON with clear indentation.
Remove whitespace from JSON while keeping it valid.
Parse URL query parameters into readable JSON for debugging links, API calls and tracking URLs.
Build URL query strings from JSON objects for links, API requests and test URLs.
Convert JSON arrays or objects into newline-delimited JSON for logs, data pipelines and AI datasets.
Parse newline-delimited JSON into a formatted JSON array for inspection, scripts and data cleanup.
Escape HTML-sensitive characters for safe display in markup.
Decode HTML entities back into readable characters.
Escape special regex characters so plain text can be used safely inside regular expressions.
Convert whole decimal numbers into hexadecimal notation.
Convert hexadecimal numbers into decimal whole numbers.
Generate one or more UUID v4 values locally for testing, development and mock data.
Decode JWT header and payload locally without verifying the signature.