🎲
UUID, token & PIN generator
Generate secure UUIDs, random tokens and PINs — locally in your browser
🔒 runs locally · no upload · no tracker
Generate UUIDs, random tokens and PINs with cryptographically secure randomness — right in your browser.
💡 Why this tool?
Developers and admins constantly need unique IDs and random secrets. Weak randomness leads to guessable values and security holes.
Your benefits
- ✓UUID v4, hex/base64 tokens and PINs
- ✓Multiple values at once
- ✓crypto.getRandomValues — no predictable randomness
🔧 How it works
- 1Choose a type (UUID, token or PIN)
- 2Set length and count
- 3Generate and copy
❓ Frequently asked questions
How random are the values?▼
They use crypto.getRandomValues / crypto.randomUUID — the browser's cryptographically secure randomness.
Are values stored?▼
No. Everything is generated locally and never stored or sent anywhere.
What are UUIDs for?▼
Unique IDs for records, files or API-key building blocks — practically always collision-free.