Minecraft 플레이어 UUID 찾는 방법
Java 또는 Bedrock 플레이어의 UUID, XUID, Floodgate UUID, 이름 기록, 스킨을 확인하는 단계별 가이드.
플레이어 검색시도: Notch · jeb_ · Technoblade · Dream · Grian
가이드 특징
Minecraft UUID란?
UUID = Universally Unique Identifier — 변경되지 않는 32자리 16진수 문자열.
Every Java Edition player has a UUID assigned by Mojang. It looks like 853c80ef3e3740fdaa867b06307a3d4f (no hyphens) or 853c80ef-3e37-40fd-aa86-7b06307a3d4f (with hyphens).
Why it matters: Usernames can change. UUIDs cannot. Servers use UUIDs for banned-players.json, whitelist.json, and ops.json so bans and whitelists stay correct even when a player renames.
853c80ef3e3740fdaa867b06307a3d4f (32 hex chars, no hyphens) or 853c80ef-3e37-40fd-aa86-7b06307a3d4f (with hyphens). Both work.XUID(Bedrock)란?
XUID is the unique ID for Bedrock Edition players — Xbox, mobile, Windows 10, Nintendo Switch. It's a long decimal number (e.g. 2535412345678901).
Floodgate UUID: For GeyserMC cross-play servers, Bedrock players get a special Floodgate UUID that starts with 00000000-0000-0000. Our lookup returns both XUID and Floodgate UUID for Bedrock players.
단계별 가이드: UUID 찾기
4단계로 간단합니다. 계정 불필요, API 키 불필요, 제한 없음.
Notch, Technoblade), Bedrock gamertag, or an existing UUID to reverse-lookup. banned-players.json, whitelist.json, or ops.json. For Bedrock: use our JSON List Wizard to generate permissions.json, allowlist.json, banned-players-bedrock.json. GET https://vrc.lol/api?username=Notch returns JSON with the UUID.- Always use UUID for bans — Never ban by username. If a player renames, a username-based ban won't work.
- Java vs Bedrock — Java uses UUID; Bedrock uses XUID. They're different. Our lookup returns both when available.
- GeyserMC cross-play — Use the Floodgate UUID for Bedrock players joining Java servers via GeyserMC.
- Banning by username — Bans won't persist if the player renames. Always use UUID.
- Mixing Java and Bedrock IDs — UUID for Java servers, XUID for Bedrock. Don't use them interchangeably.
- Wrong file format — Java uses
banned-players.json; Bedrock usesbanned-players-bedrock.json. Different structure.
사용 사례
Minecraft UUID로 할 수 있는 것:
- Ban a player — Add UUID to
banned-players.json. The ban persists even if they change their username. - Whitelist — Add UUID to
whitelist.jsonso only approved players can join. - Ops — Add UUID to
ops.jsonto grant operator permissions. - Plugins & mods — Many plugins need UUID to identify players (economy, permissions, etc.).
- Discord bots — Link Discord accounts to Minecraft via UUID.
- Leaderboards — Store UUID instead of username so name changes don't break stats.
JSON 목록 & Bedrock 서버
Our JSON List Wizard builds server config files from lookups. No manual editing.
Java Edition
Export to banned-players.json, whitelist.json, or ops.json. One click adds a player with correct UUID format.
Example banned-players.json entry: { "uuid": "853c80ef3e3740fdaa867b06307a3d4f", "name": "jeb_", "source": "Server", "expires": "forever", "reason": "Banned" }
Example whitelist.json entry: { "uuid": "853c80ef3e3740fdaa867b06307a3d4f", "name": "jeb_" }
Where files go: Place in your server's root folder (same level as server.properties). Restart the server or use /whitelist reload / /banlist to apply.
Bedrock Edition
Generate permissions.json (operator, member, visitor), allowlist.json, and banned-players-bedrock.json. Enter Xbox gamertags — we fetch XUIDs automatically. Add Floodgate UUID for GeyserMC cross-play.
Bedrock Dedicated Server용 JSON 파일을 무료로 생성하는 사이트는 우리뿐입니다.
자주 묻는 질문
Minecraft UUID란 무엇인가요?
A UUID (Universally Unique Identifier) is a 32-character hex string that uniquely identifies a Java Edition player. It never changes, even if the player changes their username.
Bedrock의 XUID란?
XUID is the unique ID for Bedrock Edition players (Xbox, mobile, Windows 10). Our tool returns it in both decimal and hexadecimal formats.
Floodgate UUID란?
A Floodgate UUID is used by GeyserMC Floodgate to represent Bedrock players on Java servers. It starts with 00000000-0000-0000 and includes the player's XUID. We provide it for cross-play setups.
무료인가요?
네. 프로필 검색과 JSON 생성기는 100% 무료입니다. 가입 불필요, API 키 불필요, 제한 없음.
banned-players.json에 플레이어를 추가하려면?
Look up the player at vrc.lol/player, then use the JSON List Wizard to add them with one click. Or copy the UUID and add it manually.
이름을 바꾸면 UUID가 변경되나요?
아니요. Java UUID는 절대 변경되지 않습니다. 서버가 밴과 화이트리스트에 UUID를 사용하는 이유입니다.
이름으로 밴할까요, UUID로 밴할까요?
Always use UUID. Usernames can change; UUIDs cannot. A ban by username will fail if the player renames. Our JSON List Wizard adds the correct UUID automatically.
플레이어가 존재하지 않으면?
철자를 확인하세요. Java 이름은 3~16자입니다. 비활성 계정이거나 Bedrock 전용일 수 있습니다.
UUID에 하이픈이 있나요 없나요?
Both work. 853c80ef3e3740fdaa867b06307a3d4f (no hyphens) and 853c80ef-3e37-40fd-aa86-7b06307a3d4f (with hyphens) are valid. Minecraft accepts both.