🔑
UUID 產生器
Bulk Generation產生標準 UUID(v1、v4)。
Cryptographically strong random UUID
Tip: A Microsoft GUID is a UUID v4 with {} braces — select UUID v4 + 'With braces {}' format.
Click Generate to create UUIDs
Generated UUIDs
What is a UUID?
A Universally Unique Identifier (UUID) is a 128-bit number used to uniquely identify information in computer systems. They are designed to be generated independently without a central authority while maintaining a negligible probability of collision.
How to Use This Tool
Select the UUID version (v1 for time-based, v4 for random) and the number of IDs you need. Click Generate to create a list of unique identifiers ready for use in your database or application.
Common Use Cases
Primary keys in distributed databases, session identifiers, transaction tracking, and naming temporary files or resources where uniqueness is critical across multiple systems.
Pro Tips
UUID v4 is the most common choice for general-purpose unique IDs because it relies on high-quality randomness. Use v1 if you need to sort IDs by creation time.