Generate unique identifiers in various formats.
UUID v4 uses random bytes for maximum uniqueness. UUID v7 encodes a timestamp for sortability. ULID is a sortable, Crockford Base32 alternative. Nanoid is a compact, URL-safe random string.
All IDs are generated in your browser using crypto.getRandomValues(). Nothing is sent to any server.