Skip to content

Code tools

Small, fast utilities developers reach for several times a day — Base64 encoding, URL escaping, format conversion, identifier renaming, JWT inspection. Every tool runs entirely in your browser. Nothing you paste in is sent to a server, which matters because the inputs are often tokens, secrets, or fragments of production payloads that have no business sitting in a third-party log. The toolset is opinionated on the formatters: JSON output is two-space indented, YAML uses block style with no flow shortcuts, and the case converter exposes camelCase, snake_case, kebab-case, PascalCase, CONSTANT_CASE, and Title Case as separate outputs so you can copy whichever your linter wants. JWT decoding never verifies signatures — verification belongs in your auth library with its actual signing key, not in a web page. Hashes (MD5, SHA-1, SHA-256, SHA-512) are computed via the Web Crypto API where available and a small WASM module otherwise; results match the openssl CLI exactly. Pick a tool below; each page has its own keyboard shortcuts, sample inputs, and copy-to-clipboard buttons sized for one-hand use.

All tools