New IETF standards take advantage of extra bits to produce time-sortable UUIDs. This can improve the locality of database keys and provide the ability to do a bit-by-bit comparison rather than parsing.
They're now available in .NET 9 Preview 7:
var guid = Guid.CreateVersion7();
var guidWithTimestamp = Guid.CreateVersion7(DateTimeOffset.UtcNow);