GUID generator

100% local. Your text never leaves this browser tab.

Get a fresh, random GUID (also called a UUID) for every line below. Add lines to generate more, delete lines to generate fewer. Each is a version 4 GUID made in your browser with the built-in crypto random source, so nothing is uploaded and no two are the same.

The token

One token, a fresh GUID every time

The rule above replaces each line with the {guid} token, which becomes a new value on every match. Ask for a different shape with a suffix.

{guid}         ->  3f2504e0-4f89-41d3-9a0c-0305e82c3301
{guid:upper}   ->  3F2504E0-4F89-41D3-9A0C-0305E82C3301
{guid:n}       ->  3f2504e04f8941d39a0c0305e82c3301   (no dashes)
{guid:short}   ->  3f2504e0                           (first 8)
{guid:braces}  ->  {3f2504e0-4f89-41d3-9a0c-0305e82c3301}

Change {guid} in the rule to any of these to get that format. The values shown are illustrative; every GUID you generate is random.

About GUIDs

What you are generating

Version 4, random

Each GUID is a random version 4 UUID with 122 random bits, so a collision is astronomically unlikely. Ideal for IDs, keys and unique file names.

Made in your browser

The values come from your machine's built-in cryptographic random generator. Nothing is requested from a server and nothing is logged.

One per line

Every line becomes its own fresh GUID, so you can generate a whole batch at once. Add or remove lines to set how many.

The Windows app

Put it on a hotkey

☕ A fresh GUID at the cursor on a hotkey, for the price of a coffee. Yours forever.

Download this exact setup as a ready-made GUID generator profile. Better still, the Windows app can type a brand-new GUID straight at your cursor with Insert mode, so you never break your flow to open a generator again. Same engine as above, entirely offline.

Get the Windows app →
Pay once, €3.39, no subscription. If the app doesn’t open, the profile is saved to your downloads, just import it.
FAQ

Questions, answered plainly

How do I generate a GUID?

Each line in the box above is already a fresh GUID. Add a line for another, or delete the ones you do not need, then copy the result. In the Windows app you can stamp one at the cursor on a hotkey.

What is the difference between a GUID and a UUID?

None in practice. GUID (globally unique identifier) is Microsoft's name for what the standard calls a UUID (universally unique identifier). This page makes version 4 (random) UUIDs, which is what most systems mean by a GUID.

Are these GUIDs safe to use as unique IDs?

Yes. A version 4 GUID has 122 random bits, so the chance of ever generating the same one twice is negligible, and they are generated with your browser's cryptographic random source rather than a weak random function.

More generators: GUIDs, date formats, random strings and today's date.