ULID Generator
Generate ULIDs online: 26-character Crockford Base32 IDs with 48-bit time and 80 random bits.
Generated IDs
How this ID is built
- Layout
- 26 Crockford Base32 characters: 10 time characters followed by 16 random characters.
- Entropy
- 80 random bits after the 48-bit millisecond timestamp.
- Time
- Yes. The first 10 characters encode millisecond time, and lexical order follows time.
- Collision risk
- The random tail has 80 bits; risk is mainly about how many IDs you create in the same millisecond.
- Example
01KWYPWV648WFMJ6TTJ72X45B4
Your IDs are generated locally with strong browser randomness. Nothing is sent to BroBroGo.
FAQ
What is ULID good for?
ULID is compact, URL-friendly and time-sortable as plain text, which is useful for logs, object keys and records that should sort by creation time.
Is ULID the same as UUID v7?
No. Both include millisecond time, but ULID uses Crockford Base32 and 26 characters, while UUID v7 keeps the standard UUID hexadecimal shape.