Skip to content
๐Ÿ†”

UUID v1 Generator

Developer

Generate time-based UUID v1 values from a timestamp for sortable unique identifiers.

0
0

About UUIDv1

  • Contains timestamp and machine identifier (MAC address or random node)
  • Sortable by creation time - useful for time-ordered data
  • 128-bit identifier with 48 bits of node ID
  • May expose machine MAC address (privacy concern - consider UUIDv7 for privacy-friendly alternative)

A version 1 UUID isn't purely random the way a version 4 UUID is, it encodes an actual timestamp along with a node identifier traditionally derived from the generating machine's MAC address, which makes it naturally sortable by creation time but also means it can leak a real piece of hardware identification embedded right in the identifier, a known privacy consideration that pushed systems toward alternatives that don't encode anything hardware-specific. This tool generates version 1 UUIDs from a given timestamp, time-ordered and correctly structured, for systems that specifically require or already rely on that format.

See more about the UUID v1 Generator

Useful for generating a UUID that needs to sort by creation time for a legacy system already built around version 1, understanding what information is actually embedded inside a version 1 UUID before using it somewhere sensitive, or producing a time-based identifier for a system that predates newer sortable alternatives.

Key features

  • Clean interface
  • Fast processing
  • No signup required
  • Works offline

Quick answers for UUID v1 Generator

What goes into the timestamp portion of a v1 UUID?
The number of 100-nanosecond intervals since October 15, 1582, the official UUID epoch, split across the time_low, time_mid, and time_hi_and_version fields so the UUIDs sort chronologically by creation time.
Does it use my real MAC address for the node ID?
No, it generates a random 48-bit node ID instead of reading your actual network MAC address, which avoids the privacy concern that made real MAC-based v1 UUIDs controversial.
Can I generate more than one at a time?
Yes, a number input lets you generate between 1 and 100 at once, with optional uppercase formatting and surrounding braces.