UUID Generator

Generate cryptographically random UUID v4 values instantly. Bulk generate up to 100 at once, toggle formatting options, and copy results with one click. Everything runs in your browser — no data is sent anywhere.

UUID 생성기

암호학적으로 안전한 UUID v4를 즉시 생성합니다. 최대 100개까지 한 번에 생성하고, 서식 옵션을 조정하며, 원클릭으로 복사하세요. 모든 처리는 브라우저에서 이루어지며 서버로 전송되는 데이터는 없습니다.

Single UUID
단일 UUID
Click "Generate UUID" to create one "UUID 생성" 버튼을 클릭하세요
Bulk Generate
대량 생성
No UUIDs generated yet
아직 생성된 UUID가 없습니다
About UUID v4
UUID v4 정보

UUID v4 (Universally Unique Identifier version 4) is defined by RFC 4122. Each UUID is 128 bits — represented as 32 hexadecimal digits in the format xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx. The 4 at position 13 identifies the version, and the variant bits at position 17 are set to 8, 9, a, or b. The remaining 122 bits are randomly generated using the browser's crypto.randomUUID(), which uses a cryptographically secure pseudo-random number generator (CSPRNG). The probability of two v4 UUIDs colliding is astronomically small — roughly 1 in 5.3 × 10³⁶.

UUID v4(Universally Unique Identifier version 4)는 RFC 4122 표준에 정의되어 있습니다. 각 UUID는 128비트이며 xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx 형식의 32자리 16진수로 표현됩니다. 13번째 자리의 4가 버전을 나타내고, 17번째 자리에 배리언트 비트(8, 9, a, b 중 하나)가 설정됩니다. 나머지 122비트는 무작위로 생성되며, 브라우저의 crypto.randomUUID()가 암호학적으로 안전한 난수 생성기(CSPRNG)를 사용합니다. 두 UUID가 충돌할 확률은 약 5.3 × 10³⁶ 분의 1로 사실상 불가능합니다.

How to Use
사용 방법
STEP 1

Generate a UUID

UUID 생성

Click the "Generate UUID" button. A fresh v4 UUID appears in the display box above it.

"UUID 생성" 버튼을 클릭하면 새로운 v4 UUID가 표시 박스에 나타납니다.

STEP 2

Toggle formatting

서식 옵션 선택

Check Uppercase to get letters A–F in caps. Check With braces to wrap the UUID in {...}, useful for Microsoft tools.

대문자 체크 시 A–F가 대문자로 표시됩니다. 중괄호 포함 체크 시 {...}로 감싸 Microsoft 도구에 활용할 수 있습니다.

STEP 3

Bulk generate

대량 생성

Set the count (1–100) and click "Generate 10 UUIDs". All are generated at once and listed below.

개수(1–100)를 설정하고 "UUID 10개 생성" 버튼을 클릭하세요. 지정한 개수만큼 한 번에 생성됩니다.

STEP 4

Copy results

결과 복사

Click Copy next to any UUID, or Copy All to grab every UUID in the list as newline-separated text.

각 UUID 옆의 복사 버튼을 클릭하거나, 전체 복사로 목록의 모든 UUID를 줄바꿈 구분 텍스트로 복사하세요.

Frequently Asked Questions
자주 묻는 질문
What is a UUID?
UUID란 무엇인가요?
UUID stands for Universally Unique Identifier. It's a 128-bit label defined by RFC 4122 (and updated by RFC 9562) used to uniquely identify information in computer systems without a central authority. UUIDs are commonly used as primary keys in databases, identifiers in APIs, and correlation IDs in logging.
UUID는 Universally Unique Identifier의 약자로, RFC 4122(RFC 9562로 업데이트)에 정의된 128비트 식별자입니다. 중앙 조정 기관 없이 컴퓨터 시스템에서 정보를 고유하게 식별하는 데 사용됩니다. 데이터베이스 기본 키, API 식별자, 로깅의 상관관계 ID 등으로 널리 활용됩니다.
What makes UUID v4 different from other versions?
UUID v4는 다른 버전과 어떻게 다른가요?
UUID v4 is randomly generated — 122 of its 128 bits come from a cryptographically secure random source (crypto.randomUUID()). Other versions use different strategies: v1 encodes a timestamp + MAC address, v3 and v5 use MD5/SHA-1 hashes of a namespace + name, and v7 (newer) uses a Unix timestamp prefix for sortability. For most use cases where you just need a unique ID without ordering requirements, v4 is the simplest and most common choice.
UUID v4는 무작위로 생성됩니다 — 128비트 중 122비트가 암호학적으로 안전한 난수 소스(crypto.randomUUID())에서 옵니다. 다른 버전은 다른 방식을 사용합니다: v1은 타임스탬프 + MAC 주소, v3/v5는 네임스페이스+이름의 MD5/SHA-1 해시, v7(최신)은 정렬 가능하도록 Unix 타임스탬프 접두사를 사용합니다. 순서 요구 사항 없이 고유 ID만 필요한 대부분의 경우 v4가 가장 간단하고 일반적인 선택입니다.
Are UUID v4 values safe to use as database primary keys?
UUID v4를 데이터베이스 기본 키로 사용해도 안전한가요?
Yes. The collision probability is astronomically low — approximately 1 in 5.3 × 10³⁶ for any two given UUIDs. In practice, you would need to generate about 2.7 × 10¹⁸ UUIDs before the probability of a single collision exceeds 50%. Note that UUID v4's random ordering can cause index fragmentation in B-tree databases at very high insert rates; if that's a concern, consider UUID v7 which is time-ordered.
네, 안전합니다. 충돌 확률은 약 5.3 × 10³⁶ 분의 1로 사실상 불가능합니다. 충돌 확률이 50%를 넘으려면 약 2.7 × 10¹⁸ 개의 UUID를 생성해야 합니다. 다만 v4의 무작위 순서는 매우 높은 삽입 속도에서 B-트리 데이터베이스의 인덱스 단편화를 유발할 수 있습니다. 이것이 우려된다면 시간 순서가 있는 UUID v7을 고려하세요.
Does this tool send my UUIDs to a server?
이 툴은 생성된 UUID를 서버로 전송하나요?
No. Everything is generated entirely in your browser using the built-in crypto.randomUUID() Web API. No data is sent to any server. You can even disconnect from the internet and the tool will continue to work.
아니오. 모든 UUID는 브라우저 내장 crypto.randomUUID() Web API를 사용해 브라우저 안에서만 생성됩니다. 어떤 데이터도 서버로 전송되지 않습니다. 인터넷을 끊어도 이 툴은 계속 작동합니다.
Sponsor
Get started on Vultr Get $300 free credit — valid for 30 days
Claim your credit →