Ad
Click Generate to create a UUID
Format
Bulk generate
Common use cases
- Generate primary keys for databases
- Create unique session or transaction IDs
- Generate API tokens
- Bulk-create identifiers for fixtures
Frequently asked questions
What is the difference between UUID v4 and v1?
UUID v4 is fully random and contains no identifying information. UUID v1 is based on timestamp and MAC address, so it can leak metadata.
Are these UUIDs cryptographically secure?
Yes. We use crypto.randomBytes (Node.js) or window.crypto.getRandomValues — the same source used by security software.