Frequently asked questions
What is the difference between a GUID and a UUID?
None in practice. GUID is Microsoft's term and UUID is the standard one, and both name the same 128-bit identifier.
How do I generate a GUID in C#?
Call Guid.NewGuid() for a random GUID, or Guid.CreateVersion7() on .NET 9 and later for a time-ordered one. This page is handy when you need values without writing code, such as for test data or config files.
Why does SQL Server show GUIDs in uppercase?
SQL Server tools display uniqueidentifier values in capitals. Case doesn't change the value, so tick Uppercase if you want them to match.
Can I get GUIDs with curly braces?
Yes. Tick Braces { } to wrap each GUID the way the Windows registry and Guid.ToString("B") write it.
Is it safe to use these GUIDs in production?
Yes. They come from the browser's cryptographically secure random number generator and are created on your device, never sent anywhere.