Tested tool guide
Tested browser tools
Checked August 16, 2026
What UUID v7 Generator & Inspector does, with a checked example
The tool does two things. It generates UUID version 7 tokens, the RFC 9562 format that embeds the current Unix time in milliseconds in the first 48 bits, so tokens are practically unique and sort near creation order. It also inspects any UUID you paste and reports the version, variant, embedded timestamp, and the random bits filling the rest of the token. Everything runs locally; nothing is uploaded. The surprise: 'time-ordered' holds only to the millisecond. Two tokens minted in the same millisecond share a timestamp, and their random bits decide the order, unless the generator adds the monotonic counter methods from RFC 9562 section 6.2.
Worked example
A concrete input and expected output from the current implementation.
Input
019fba9e-d800-7a1f-8012-3456789abcde
->
Expected output
Version: 7 (RFC 9562)
Variant: RFC 4122 (leading bits 10)
Timestamp: 2026-08-01 00:00:00.000 UTC
Unix epoch: 1785542400000 ms
rand_a (12 bits): 0xa1f
rand_b (62 bits): 0x00123456789abcde
The first 48 bits are the Unix epoch in milliseconds: 0x019fba9ed800 equals 1785542400000, which is 2026-08-01 00:00:00.000 UTC. The '7' at the start of the third group is the version nibble, 'a1f' the 12-bit rand_a. The '8' starting the fourth group carries the variant bits (binary 10); the 14 bits left in that group (value 0x12) and the 48 bits of the fifth group (0x3456789abcde) form the 62-bit rand_b, shown zero-padded here as 0x00123456789abcde.