Generate GUIDs in every format — with braces, uppercase, bulk up to 1000
GUID (Globally Unique Identifier) is Microsoft's name for a UUID — the same 128-bit random identifier, just from the Windows/.NET world. This generator produces GUIDs in all the formats Microsoft tooling expects: standard hyphenated (d format), wrapped in braces like {{f47ac10b-...}} (the registry and COM B format), UPPERCASE, and 32-digit no-hyphen (N format) — singly or in bulk up to 1000.
You'll need GUIDs when writing C# code (equivalent to Guid.NewGuid()), defining SQL Server uniqueidentifier columns, editing Windows registry keys, creating COM interface IDs, building installers (MSI upgrade codes) or configuring Visual Studio project files — all places where a fresh unique ID must be pasted in by hand.
Functionally identical. GUID is the Microsoft ecosystem's term; UUID is the standards term (RFC 4122). A GUID generated here is a valid v4 UUID and vice versa. Generation uses your browser's secure random source and happens entirely on your device — nothing is sent to any server.