أنشئ 5 معرّفات UUID عشوائية من الإصدار الرابع وفق RFC 4122 دفعة واحدة. يُتجاهل المدخل؛ شغّل مرة أخرى للحصول على دفعة جديدة.
كيفية استخدام منشئ UUID
اضغط "تشغيل" لإنشاء دفعة جديدة من معرّفات UUID.
تظهر خمسة معرّفات UUID من الإصدار الرابع في لوحة الإخراج.
انسخها بنقرة واحدة؛ وشغّل مرة أخرى للحصول على مجموعة جديدة.
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: معرّفات عشوائية تحوي 122 بتًا عشوائيًا، تُنشأ من مصدر عشوائي قوي تشفيريًا.
احتمال التصادم ضئيل إلى حدّ فلكي. فمع 122 بتًا عشوائيًا ستحتاج إلى إنشاء مليارات المعرّفات قبل أي فرصة واقعية للتكرار.
تُشكّل خمسة معرّفات دفعة مناسبة لمعظم المهام. اضغط "تشغيل" مرة أخرى لإنشاء خمسة أخرى متى احتجت المزيد.
ضمّن هذه الأداة
أضف هذه الأداة إلى موقعك الخاص. انسخ المقتطف أدناه، ويبقى محدّثاً تلقائياً.
<iframe src="https://monu.tools/embed/ar/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 ومكوّناتها بصيغة النسبة المئوية (percent-encoding)، بأمان مع UTF-8.
فُكّ ترميز رمز JSON Web Token لفحص رأسه وحمولته، مع أوقات انتهاء وإصدار بصيغة مقروءة. يعمل بالكامل داخل متصفحك، ولا تُرفع الرموز أبداً.
أنشئ تجزئات SHA-1 وSHA-256 وSHA-384 وSHA-512 لأي نص، مباشرة داخل متصفحك.