🆔 UUID 생성기
전 세계적으로 고유 식별자 생성 - 오프라인 및 보안
🔒 이미지가 기기 밖으로 나가지 않아요. 모든 처리는 Web Crypto API (crypto.randomUUID)를 사용하여 브라우저에서 로컬로 이루어져요. 업로드, 서버, 추적이 없어요.
기능
- Instant v4 UUIDs — Generate RFC 4122 compliant version 4 UUIDs with a single click.
- Bulk Generation — Generate up to hundreds of UUIDs at once for batch operations.
- UUID 검증기 — Paste any UUID to check its validity and detect its version.
- Format Options — Output in standard, uppercase, no-hyphens, or braces format.
작동 방식
- Click Generate — Get a new v4 UUID instantly. Click again for another.
- Choose format — Select standard, uppercase, no-hyphens, or braces format.
- Bulk generate or validate — Generate multiple UUIDs at once, or paste an existing UUID to validate it.
활용 사례
- Generate unique IDs for database records
- Create correlation IDs for distributed systems
- Generate test data with unique identifiers
- Validate UUIDs from APIs or logs
자주 묻는 질문
What is a v4 UUID?
A version 4 UUID is a 128-bit identifier generated from random numbers. The probability of a collision is astronomically low — about 1 in 2^122.
Are these UUIDs truly random?
Yes. We use crypto.randomUUID() or crypto.getRandomValues() which provide cryptographic-quality randomness.
Can I validate any UUID version?
The validator checks the format of any UUID and detects the version (v1 through v5) based on the version nibble.
관련 도구
- 🔐 비밀번호 생성기 — 암호화 보안 비밀번호 - 브라우저에서 로컬로 생성됨
- #️⃣ 해시 생성기 — 텍스트 또는 파일에서 암호화 해시를 생성해요
- 🕐 타임스탬프 변환기 — Unix 타임스탬프와 사람이 읽을 수 있는 날짜 간에 변환해요