Developer tools are small utilities that help with the daily grind of writing and shipping software: decoding tokens, testing patterns, parsing schedules, formatting data, planning networks, calculating permissions, and generating credentials. Each one runs in your browser so you can stay inside the workflow without context-switching to a separate app.
These utilities cover the moments when looking up syntax or running a one-off calculation would otherwise interrupt real work.
Developer utilities usually take small inputs and produce small outputs. Network round trips to a remote service add visible latency that often exceeds the cost of the computation itself. Running locally inside the tab removes that wait.
Privacy matters for a subset of these tools. JWTs frequently contain user identifiers and claim sets that should not be pasted into a third-party site. Generated passwords are by definition secrets that should reach as few systems as possible. Browser-based generation keeps the secret on the device that will eventually use it.
Server-side approaches still hold value for tasks that need a real environment: querying a database, hitting a live API, or running a large compilation. The tools here cover the parts of the job where a small library and your browser are enough.
| Tool | Primary use | Output / options |
|---|---|---|
| JWT decoder | Decode token header and payload | JSON output, expiry shown |
| Number base converter | Convert between bases | Binary, octal, decimal, hex |
| Regex tester | Test patterns | Match, replace, split modes |
| Cron explainer | Parse schedule into English | Next run times |
| HTML entity encoder | Encode special characters | Named or numeric entities |
| Markdown previewer | Render Markdown to HTML | Live preview |
| SQL formatter | Beautify queries | MySQL, PostgreSQL, T-SQL, ANSI |
| CIDR calculator | Subnet planning | Network, broadcast, host range |
| Chmod calculator | Unix permission bits | Numeric and symbolic |
| Password generator | Generate credentials | Random, strong, memorable |
| YAML formatter | Format and validate YAML | Kubernetes, CI, OpenAPI |
| XML formatter | Pretty-print XML | DOMParser-based |
| Slug generator | URL-safe slugs | Diacritic handling |
Debug a failing auth request. Capture the bearer token from a network panel, paste it into JWT decoder, then check the expiry timestamp against unix timestamp.
Set up a new scheduled job. Draft the cron in cron explainer, verify the next run times, then format the surrounding config with YAML formatter before committing.
Plan a small VPC. Calculate the subnet split with CIDR calculator, generate a unique stack identifier with UUID generator, and seed the bastion host login with password generator.
A handful of standards underpin these tools. JWTs follow RFC 7519: three Base64URL-encoded parts separated by dots, signed with the algorithm declared in the header. Cron syntax is informally standardized through Vixie cron and POSIX, with extensions in Quartz and Jenkins.
CIDR notation comes from RFC 4632 and replaces the older classful network model. Unix permissions use a nine-bit mask split into owner, group, and other; the chmod calculator simply shows both numeric and symbolic forms in parallel.
SQL has multiple competing dialects but ANSI SQL covers the common subset. The formatter here understands dialect-specific keywords (MySQL backticks, PostgreSQL dollar quoting, T-SQL square brackets) without rejecting input that mixes them.
Reviewed and tested May 25, 2026.