צרו 5 מזהי UUID אקראיים מסוג RFC 4122 גרסה 4 בבת אחת. מתעלמים מהקלט; הריצו שוב לקבלת אצווה חדשה.
כיצד להשתמש במחולל 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 מסוג RFC 4122 גרסה 4: מזהים אקראיים עם 122 ביטים אקראיים, שנוצרים ממקור חזק קריפטוגרפית.
התנגשויות הן בלתי סבירות באופן אסטרונומי. עם 122 ביטים אקראיים תצטרכו לייצר מיליארדי מזהי UUID לפני שתהיה אפשרות ריאלית כלשהי לחזרה.
אצווה של חמישה נוחה לרוב המשימות. לחצו על הרצה שוב כדי לייצר עוד חמישה בכל פעם שאתם צריכים.
הטמע את הכלי הזה
הוסף את הכלי הזה לאתר שלך. העתק את קטע הקוד שלהלן; הוא מתעדכן אוטומטית.
<iframe src="https://monu.tools/embed/he/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 כדי לבחון את הכותרת (header) והמטען (payload) שלו, עם זמני תפוגה והנפקה בפורמט קריא. הכול פועל בדפדפן שלכם; אסימונים לעולם לא מועלים.
צרו ערכי Hash מסוג SHA-1, SHA-256, SHA-384 ו-SHA-512 לכל טקסט, ישירות בדפדפן שלכם.