UUID v4 생성기 온라인 — 무료 대량 생성
브라우저에서 암호학적으로 무작위 UUID v4 식별자를 생성. 기본 키, 멱등성 토큰, 고유 리소스 ID에 유용.
생성 버튼을 누르면 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).