Calculators

A small set of developer-adjacent calculators that don't fit neatly under text, image, or document tools — timestamp conversion, cron syntax, contrast ratios, and data size math, grouped here because you'll often need more than one of them in the same debugging session.

Developers scheduling cron jobs, checking accessibility contrast ratios, or converting between storage units and Unix timestamps.

Common use cases

All Calculators

Frequently Asked Questions

What's the difference between MB and MiB in the data size converter?

MB (megabyte) uses base-10 — 1 MB = 1,000,000 bytes — the convention storage manufacturers use. MiB (mebibyte) uses base-2 — 1 MiB = 1,048,576 bytes — the convention operating systems typically use to report file sizes. This is why a '500 GB' drive shows as roughly 465 GiB in your OS.

What WCAG contrast ratio should I target?

WCAG AA requires a 4.5:1 ratio for normal text and 3:1 for large text (18pt+ or 14pt+ bold). WCAG AAA raises that to 7:1 and 4.5:1 respectively.

Does the cron expression calculator support non-standard syntax like @daily?

Standard 5-field cron syntax is fully supported; check the tool page itself for which shorthand expressions are recognized, since support varies by the underlying cron implementation you're targeting.