Generate UUIDs for Database Primary Keys
Create UUID v4 values to use as primary keys in PostgreSQL, MySQL, MongoDB, and other databases.
Click Generate to create UUIDs
UUID v4 uses 122 random bits — the chance of a collision between two UUIDs is astronomically small.
Generated with crypto.getRandomValues — cryptographically secure, never sent to a server.
Databases tips
UUIDs as primary keys allow records to be created across distributed systems without coordination — no auto-increment collisions between servers.
PostgreSQL has a native UUID type. Use uuid_generate_v4() server-side, or generate here and insert via parameterised query.
MongoDB uses its own ObjectID format, but also accepts UUIDs as string _id values. Generate here and use as a custom identifier.
Generate 10–50 UUIDs at once for bulk data seeding or test fixture files. Copy all to paste directly into your SQL INSERT statements.
Cómo funciona
¿Por qué usar el nuestro?
Also check out…
Generate API Keys and Tokens
Create unique, random identifiers for API keys, se
Generate Test IDs for Software Testing
Create batches of unique IDs for test fixtures, mo
Generate React and Frontend Component Keys
Create stable unique keys for React lists, dynamic
Generate Tracking and Correlation IDs
Create unique correlation IDs for distributed trac
