Quick answer
Look up a Minecraft Java UUID from a username, normalize a pasted UUID, and immediately calculate the player's default Locator Bar color.
What is a Minecraft UUID?
A UUID is a 128-bit identifier that stays attached to a Java account even when the visible username changes.
Player names are convenient for people, but they are not the durable identifier used for every internal relationship. A UUID provides a stable value that plugins, server data, allowlists, player files, and tools can use without depending only on the current name.
The same UUID can be written with hyphens or as 32 hexadecimal characters. This lookup accepts both forms. It normalizes direct UUID input before calculating the default Locator Bar color.
123e4567-e89b-12d3-a456-426614174000123e4567e89b12d3a456426614174000How do I find a Minecraft UUID from a username?
Enter the current Java username in the lookup tool; it resolves the public profile UUID and then shows both the normalized identifier and calculated color.
Username mode requires a public profile request because the text name itself does not contain the UUID. If the current name resolves successfully, the result can be copied or passed into the color workflow.
Direct UUID mode is different: once you already have the 128-bit value, the Locator Bar color calculation stays in your browser. That makes UUID input useful when you copied the identifier from a server panel, player data file, or another profile service.
- Check spelling and capitalization when a username is not found.
- Use a current Java Edition username rather than a Bedrock gamertag.
- Paste a known UUID to skip the username lookup entirely.
- Keep UUIDs as identifiers; do not treat them as passwords or login credentials.
How do I check whether a UUID is valid?
A valid Minecraft-style UUID contains exactly 32 hexadecimal digits, optionally separated into the standard 8-4-4-4-12 groups.
The letters may be uppercase or lowercase, and hyphens do not change the underlying 128-bit value. The tool removes accepted separators and validates the remaining hexadecimal characters before performing any color calculation.
A structurally valid UUID is not proof that a specific player account exists. Validation only confirms the format. Use username resolution or trusted server records when you need to connect the value to a real profile.
Why does a UUID produce a Locator Bar color?
Java's fallback waypoint rendering reduces the normalized UUID to a repeatable integer and derives RGB channels from that result.
The process is deterministic: equivalent dashed, compact, uppercase, and lowercase versions normalize to the same bits and therefore the same automatic color. The Finder displays that Hex result and a visual preview.
This is only the fallback value. A scoreboard team or an explicit /waypoint color can replace it in game. Continue to the UUID Color guide for the calculation steps and override order.
Primary sources
Official release references
This guide distinguishes documented vanilla behavior from this site's reproducible calculation and practical palette guidance.