locatorbar
What is your Minecraft Java Edition locator bar color?
Hint: use namemc to find your UUID.
RESULT = ...
Yes I know this is common knowledge and that namemc shows the color, but this is a program that runs entirely locally without any APIs.
For the curious, the color is the lower 24 bits of UUID.hashCode() where UUID is the Java UUID object containing your UUID.
The hash code is computed by XOR'ing the lower and upper halves of the UUID, and then XOR'ing the lower and upper halves of the result.
Your UUID is retrievable using the Mojang API.