All tools
Every utility here computes in your browser. Nothing you paste is uploaded, which is the point when the input is a production payload, a live token or a file you have not published.
The six groups below are ordered the way work tends to flow: parse and reformat data, encode or sign it, generate what you need, then reason about time, text and colour.
Color
About colorFour tools covering the path from a single colour to a shippable palette: convert it, expand it into a scale, blend it into a gradient, and prove the result is legible.
Date & Time
About date & timeTime is the subject that produces the most confidently wrong code. An offset stored where a timezone belonged, milliseconds read as seconds, a scheduled job that skips a day twice a year.
Encoders & Decoders
About encoders & decodersThis group covers the transformations that let arbitrary data survive a channel that was not designed to carry it, and the ones that prove data has not been altered on the way. They are frequently confused with each other, and the confusion is where the security bugs come from.
Base64 Encode / Decode
Encode and decode Base64 text.
Hash Generator
Generate MD5, SHA-1, SHA-256, SHA-384 and SHA-512 hashes.
HMAC Generator / Verifier
Generate and verify HMAC signatures.
JWT Encoder / Decoder
Encode, decode, inspect and verify JWTs.
URL Parser / Encoder
Parse, edit and encode URLs and query strings.
Formatters
About formattersFormatters take structured text that is technically correct but unreadable, and make it legible again. Minified JSON from an API, a config file after a hand edit, a payload copied out of a log line with the escaping still attached.
Generators
About generatorsGenerators produce something that did not exist before: an identifier, a secret, a schedule, an image. What separates a good one from a dangerous one is where the randomness comes from and whether the output ever leaves your machine.
Text
About textThese tools answer questions about text that you cannot answer by reading it. What exactly changed between two versions. Whether a pattern matches what you think it matches. Why two strings that look identical are not.