مولّد UUID v4 أونلاين — مجاناً وبكميات كبيرة
أنشئ معرّفات UUID v4 عشوائية تشفيرياً داخل متصفحك. مفيدة للمفاتيح الأساسية ورموز الـ idempotency والمعرفات الفريدة.
انقر إنشاء لإصدار UUID v4 جديد عبر crypto.randomUUID(). بالعدد الذي تريد — لا يُسجَّل شيء.
- اكتب أو الصق شيئاً للبدء
حالات الاستخدام الشائعة
- 1Pre-generate IDs for database records before you have an INSERT round-trip.
- 2Create idempotency keys for retry-safe API calls.
- 3Stamp upload filenames so two simultaneous uploads cannot collide.
الأسئلة الشائعة
Is this UUID v4 or v7?+
v4 — fully random with 122 bits of entropy. It does NOT sort by time. If you need time-ordered IDs use UUID v7 or ULID instead.
How unlikely is a collision?+
Generating 1 billion UUIDs per second for 100 years still leaves less than a one-in-a-billion collision chance. Practically zero for any sensible workload.
Are these UUIDs cryptographically random?+
Yes. crypto.randomUUID() uses the OS CSPRNG (/dev/urandom on Linux, BCryptGenRandom on Windows, SecRandomCopyBytes on macOS).