Format data before debugging
JSON, text, and encoding tools make payloads easier to read before you compare API responses, logs, or documentation snippets.
17 tools
Use these utilities to encode, decode, format, convert, and inspect common values you run into while building, debugging, and documenting software.
Practical guide
Developer utilities are built for quick inspection and formatting tasks that interrupt implementation work. They are intentionally narrow: paste a value, transform it, inspect the output, and copy the result without sending the main input to a backend for calculation.
JSON, text, and encoding tools make payloads easier to read before you compare API responses, logs, or documentation snippets.
Timestamp, file-size, URL, and Base64 utilities help when two tools expect different representations of the same value.
Slug, header, and escaping helpers reduce repetitive manual transformations while keeping the result visible for review.
Tool library
Encode plain text into Base64 for transport, embedding, or debugging workflows.
Decode a Base64 string back into readable plain text for debugging or inspection.
Percent-encode text for safe use inside query strings, paths, or redirect parameters.
Decode percent-encoded text back into a readable URL segment or query value.
Generate a cryptographic hash from plain text using common SHA algorithms.
Decode a JSON Web Token payload and inspect its issued-at and expiration timestamps without sending the token anywhere.
Parse a standard cron expression and turn it into a plain-English schedule explanation.
Pretty-print raw JSON into readable, indented output for debugging, documentation, or handoff work.
Compress formatted JSON into a compact one-line string for payloads, fixtures, or transport.
Convert a Unix timestamp into a readable date or turn a date into a Unix timestamp for debugging and integration work.
Convert response times between microseconds, milliseconds, seconds, and minutes.
Convert a time duration into alternate units and summarize the same length of time in a more readable form.
Convert storage sizes between bytes, KB, MB, GB, and TB using consistent binary scaling.
Convert throughput or transfer values between bits, bytes, and their larger units.
Escape special regular-expression characters in plain text so the string can be used literally in a regex pattern.
Validate whether a string looks like a UUID and identify the version when possible.
Turn a title or phrase into a clean, lowercase URL slug suitable for paths and content publishing.