UUID v4 जनरेटर ऑनलाइन — मुफ़्त बल्क UUID
अपने ब्राउज़र में क्रिप्टोग्राफ़िक रूप से यादृच्छिक UUID v4 पहचानकर्ता बनाएँ। प्राथमिक कुंजी, idempotency टोकन और अनूठे संसाधन IDs के लिए उपयोगी।
"बनाएँ" क्लिक करें ताकि crypto.randomUUID() से नया v4 UUID बने। जितने चाहें — कुछ भी लॉग नहीं होता।
- शुरू करने के लिए कुछ टाइप या पेस्ट करें
सामान्य उपयोग
- 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).