Calculation
Formula and game rule
Chunk coordinate = floor(block coordinate ÷ 16). Local coordinate = block coordinate modulo 16 normalized to 0–15.
Coordinates
Find a block's chunk and its exact local position, including negative coordinates.
Chunk Coordinate CalculatorTry it now
Game rule: Negative positions use floor division, matching Minecraft chunk boundaries.
Step-by-step guide
Enter the block's world X and Z coordinates.
Read the chunk X/Z pair containing that block.
Use the local 0–15 position and chunk start to locate borders precisely.
Calculation
Chunk coordinate = floor(block coordinate ÷ 16). Local coordinate = block coordinate modulo 16 normalized to 0–15.
Worked example
Block X −1, Z −17 is in chunk X −1, Z −2 at local position X 15, Z 15.
Java and Bedrock both use 16×16 horizontal chunks, so this coordinate conversion applies to both.
This page is designed for players looking for a Minecraft chunk calculator, block to chunk coordinates, negative chunk coordinates. The calculator runs locally in your browser and updates without sending your world coordinates or command inputs to the server.
Common questions
Chunk boundaries extend negatively using floor division, so chunk −1 covers blocks −16 through −1.
Local X and Z are always whole positions from 0 through 15.