Генеруйте 5 випадкових UUID версії 4 за RFC 4122 одночасно. Ввід ігнорується; запустіть знову для нової партії.
Як користуватися Генератор UUID
Натисніть «Запустити», щоб згенерувати нову партію UUID.
У панелі виводу з'являються п'ять UUID версії 4.
Скопіюйте їх одним кліком; запустіть знову для нового набору.
A UUID (universally unique identifier) is a 128-bit value used to label things, database rows, files, events, messages, API resources, without a central authority handing out IDs. Any machine can mint one independently and trust it will not clash with anyone else's.
This generator produces version 4 UUIDs, the most common kind. A v4 UUID is almost entirely random: 122 of its 128 bits come from a random source, with the remaining 6 bits fixed to mark the version and variant. It is written as 32 hexadecimal digits in the familiar 8-4-4-4-12 grouping.
Each batch of five is generated with your platform's cryptographically secure random source, the same one used for security-sensitive randomness, not a predictable pseudo-random function. Press Run again any time for a fresh batch.
Uniqueness is a matter of probability rather than a hard guarantee, but the numbers are reassuring: with 122 random bits you would need to generate billions of UUIDs before the chance of a single collision became meaningful. For practically every application this is effectively unique.
Version 4 is the right default when you just need a unique ID. If ordering matters, version 7 encodes a timestamp in its leading bits so IDs sort by creation time, which keeps database indexes tidier than fully random v4 keys. The Learn article on v4 vs v7 covers the trade-off in depth.
Common uses include primary keys, idempotency keys that make a request safe to retry, correlation IDs for tracing a request across services, and unique file names. Keep in mind that a v4 UUID is random but not secret, so it should not be used on its own as a security token or password.
Поширені запитання
Це UUID версії 4 за RFC 4122: випадкові ідентифікатори зі 122 випадковими бітами, згенеровані криптографічно стійким джерелом.
Колізії астрономічно малоймовірні. Зі 122 випадковими бітами потрібно було б згенерувати мільярди UUID, перш ніж з'явиться реалістичний шанс повтору.
П'ять це зручна партія для більшості завдань. Натисніть «Запустити» знову, щоб згенерувати ще п'ять, коли потрібно більше.
Вбудувати цей інструмент
Додайте цей інструмент на власний сайт. Скопіюйте фрагмент нижче; він оновлюється автоматично.
<iframe src="https://monu.tools/embed/uk/uuid-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>Пов'язані інструменти
Кодуйте текст у Base64 або декодуйте Base64 назад у текст. Підтримка UTF-8 з автоматичним визначенням напряму.
Відсоткове кодування та декодування URL і компонентів URL із підтримкою UTF-8.
Декодуйте JSON Web Token, щоб переглянути його заголовок і корисне навантаження, з читабельним часом завершення та видачі. Працює повністю у вашому браузері; токени ніколи не завантажуються.
Генеруйте хеші SHA-1, SHA-256, SHA-384 та SHA-512 для будь-якого тексту прямо у вашому браузері.