Random Token Generator
Generate a cryptographically secure random token for API keys, secrets, or passwords — in hex, Base64, or alphanumeric format.
ec27ff6a7214df9d7a9c02c0948f3911
Frequently Asked Questions
Is this random enough for secrets?
Yes — it uses your browser's Web Crypto API (crypto.getRandomValues), a cryptographically secure random number generator suitable for API keys and session secrets.
Which format should I use?
Hex and Base64 are compact and common for API keys and tokens; alphanumeric avoids special characters, which is handy when a token needs to be pasted into URLs or config files without escaping.
Is my generated token stored anywhere?
No — it's generated locally in your browser and never sent to any server.
Explore CodeSpeedTest