Web Toolkit

Developer tools

Format, decode and inspect the data formats you work with every day — plus the generators that go with them.

These tools are needed at the worst possible moment: a webhook payload arrives on one unreadable line, a token has to be checked before a deploy goes out, a config file will not parse and the error message points at "line 1".

Which one to reach for is mostly about what you are trying to learn. Use the JSON and YAML formatters when you need to read a structure, and watch their error output when you need to know why a parser rejected it — the position of the first invalid character is usually the whole answer. Base64 and URL encoding look interchangeable and are not: one is a transport alphabet for binary data, the other escapes characters that would otherwise break a query string, and swapping them corrupts data silently. Reach for the regex tester before you paste a pattern into code, and the cron parser before you trust a schedule expression that runs at 3am.

The generators cover the other half of the job: producing an artefact rather than reading one. UUIDs come from the Web Crypto API, so they are random in the sense that matters. The QR code generator renders a static image pointing directly at whatever you entered — no shortener, no redirect through a tracking domain, no expiry. That distinction matters more than it sounds: most free QR services quietly route scans through their own server, which means the code stops working when they change their pricing, and every scan is logged by someone you did not choose. A code generated here has no owner but you.

Anything touching a credential — JWTs, hashes — is decoded here in your browser and never transmitted. That still is not a licence to paste live secrets into web pages: a token you have pasted anywhere is a token worth rotating. The same holds for what you encode: Wi-Fi credentials, a private URL, contact details inside a QR code — none of it is transmitted, so generating a code for something that is not meant to be public is safe.

Guides

Other categories