ऑनलाइन UUID और GUID जनरेटर

request IDs, fixture batches और sortable v1 samples के लिए browser-local UUIDs और GUIDs बनाएं.

विकल्प
generated UUIDs 0
आपके browser में नया UUID batch बनाया जा रहा है...
copy-ready helpers
request header lines
quoted UUID lines
JSON ID objects
UUID या GUID क्या है?

A UUID (Universally Unique Identifier), also called a GUID (Globally Unique Identifier), is a 128-bit value used to identify records, requests, and resources across systems. The common text form uses 32 hexadecimal characters split into five groups with hyphens.

यह UUID / GUID workflow कैसे काम करता है

यह पेज preset, version, count और output mode के लिए query-backed workflow बनाए रखता है, और फिर उन्हीं settings से browser में नए UUID बनाता है. UUID v4 request IDs और public identifiers के लिए default है. UUID v1 sortable samples के लिए timestamp ordering रखता है, और browser-side generation random node id का use करती है क्योंकि browsers MAC address expose नहीं करते.

सामान्य उपयोग के मामले
  • APIs में request और correlation IDs
  • seed data और test fixture batches
  • sortable migration या debugging samples
  • database और resource identifiers
  • logs, queues और job traces के लिए unique IDs
UUID संस्करण
v1 समय-क्रमित: जब आपको sortable samples चाहिए, तब यह सबसे अच्छा है. Browser-side generation timestamp ordering और random node id का उपयोग करती है.
v4 रैंडम: request IDs, fixtures और public identifiers के लिए सबसे अच्छा default, क्योंकि यह timing या machine details expose नहीं करता.
अक्सर पूछे जाने वाले प्रश्न

क्या UUID वास्तव में अद्वितीय हैं?

While collisions are theoretically possible, the probability is astronomically low (1 in 2^122 for v4). You would need to generate 1 billion UUIDs per second for 85 years to have a 50% chance of collision.

क्या मुझे UUID v1 या v4 का उपयोग करना चाहिए?

ज़्यादातर request IDs, fixtures और public identifiers के लिए v4 इस्तेमाल करें. जब sortable samples आपके workflow में मदद करें और creation-time ordering उस timing signal को छिपाने से ज़्यादा महत्वपूर्ण हो, तब v1 इस्तेमाल करें.