Everyday utilities for developers
These tools cover the small tasks that interrupt real work: checking a payload, decoding a token or generating an ID. Every one of them runs locally, which matters when the data is a production token or a customer record.
Data formats. The JSON formatter validates and pretty-prints JSON with exact error positions, and the CSV to JSON converter handles quoted fields, custom delimiters and nested keys in both directions.
Encoding and security. Use the Base64 encoder and the URL encoder for safe transport of text and binary data. The JWT decoder reads a token’s header and claims and tells you when it expires. The hash generator computes SHA-family hashes and HMACs, and the password generator creates strong passwords and passphrases with the entropy shown.
Identifiers and time. The UUID generator supports v4, time-ordered v7 and ULID. The Unix timestamp converter translates epoch times, and the cron expression generator explains and previews Unix, Spring and Quartz schedules.
Design. The color converter translates between HEX, RGB, HSL and CMYK and checks WCAG contrast.
Nothing leaves your browser
There are no API calls behind these tools. Tokens, keys and payloads are processed in memory in the page and discarded when you close it.