Loading...
Loading...
Generate UUIDs with format options and matching Python code. Export as JSON, CSV, SQL, or Python list.
import uuid # Generate 10 random UUIDs (version 4) uuids = [str(uuid.uuid4()) for _ in range(10)] for u in uuids: print(u)
UUID v4 has 122 random bits (2122 possible values = 5.3 × 10³⁶). By the birthday paradox, you'd need to generate 2.71 × 10¹⁸ UUIDs for a 50% chance of one collision. If you generated 1 billion UUIDs per second, it would take ~86 years to reach that threshold.