UUID & Nano ID Generator
Generate UUID v4, UUID v7, and Nano IDs in bulk — instantly in your browser.
100% in your browser. Nothing is uploaded.
Frequently asked questions
What is the difference between UUID v4 and UUID v7?
UUID v4 is entirely random — 122 random bits with no inherent ordering. UUID v7 embeds a 48-bit millisecond timestamp in the first 6 bytes, making the IDs lexicographically sortable by creation time. This matters for database primary keys: v7 inserts at the end of a B-tree index (good for performance) while v4 inserts randomly (causing index fragmentation).
What is Nano ID and when should I use it?
Nano ID produces URL-safe random IDs using a 64-character alphabet. A 21-character Nano ID has roughly the same collision probability as a UUID v4 but is shorter and has no dashes. Use it when you want compact, URL-friendly IDs and do not need the timestamp-sortable property of UUID v7.
Are the IDs generated securely?
Yes. All IDs use crypto.getRandomValues, the Web Crypto API, which is cryptographically secure. Nothing is sent to a server — generation happens entirely in your browser.
More dev tools
JSON Formatter
Format, validate, minify, and explore JSON.
Base64 Encode/Decode
Encode and decode Base64 for text and files.
JWT Decoder
Decode and verify JSON Web Tokens.
URL Encoder
Encode, decode, and parse URLs and query strings.
Hash Generator
MD5, SHA-1, SHA-256/384/512 for text and files.
Regex Tester
Test patterns with live matches and replace.