Free online text & developer tools

Small utilities for everyday developer tasks — generating credentials, decoding tokens, encoding strings, converting timestamps. Everything runs locally, so you can paste tokens or secrets without sending them anywhere.

12 tools available

Why use these text tools?

Safe for secrets and tokens

Paste a production JWT, generate a password, or encode a key — none of it leaves your browser. Unlike hosted decoders, there is no server log of your input.

No signup, no rate limits

Every tool works on first visit. No account, no API key, no "X requests per day" wall.

Built for one task each

Each page does a single thing well. Open, use, move on.

Common use cases

Frequently asked questions

Are my tokens and passwords private?

Yes. Every tool runs entirely in your browser using the standard Web Crypto and text APIs. Nothing you paste or generate is sent to a server — you can confirm this by watching the Network tab in your browser's dev tools.

Can the JWT decoder verify signatures?

No. Signature verification requires the private or public key that signed the token. This tool only decodes and displays the header, payload, and signature portion. Verify signatures on the server that owns the key.

Which UUID version should I use?

Use v4 (random) for most cases — it is the default. Use v7 if you need time-ordered IDs, for example as primary keys in a database where insertion order matters for index locality.

Are generated passwords cryptographically strong?

Yes. The password generator uses the browser's crypto.getRandomValues() API, the same source of randomness used for TLS keys. No Math.random() fallback.