Converter

Block Distance to Chunks

One Minecraft chunk is 16 × 16 blocks wide. Render distance, simulation distance, and /forceload regions are all measured in chunks — but in-game positions are given in blocks.

Block distance

Linear distance in blocks. Shift-click +/- to step by one chunk (16).

Chunks

Render distance, simulation distance, and /forceload all count in chunks.

Block coordinate → chunk coordinate
Chunk coordinate
(9, -22)
Within chunk (X, Z)
(8, 12)
0 = west/north edge · 15 = east/south edge
Position within chunk

Each cell is one block. The highlighted cell is your position inside chunk (8, 12).

Example commands

Live-updated as you change the values above. Click to copy.

/forceload — keep this chunk loaded (single chunk at block X, Z)
/forceload — load a 192×192 block region (12×12 chunks)
/tp — jump to the corner of chunk (9, -22)

Quick reference

Common distances and what they correspond to in-game.

BlocksChunksMeaning
161One chunk boundary. Block coords mod 16 give your position within the chunk.
322Smallest meaningful render distance — almost nothing renders.
805Tiny render preset on low-end devices.
1288Default simulation distance in Java Edition — mobs and redstone tick within this radius.
16010Default render distance in Bedrock Edition.
19212Default render distance in Java Edition.
25616Common 'high' render preset. A 16×16 chunk square is the /forceload cap.
38424Far/Ultra render preset on capable hardware.
51232Java Edition maximum render distance.
76848Bedrock Edition maximum render distance (with experimental settings).
4,096256A full 16×16 chunk square — the default /forceload cap per dimension.

How chunks work

  • Size: 16 × 16 blocks horizontally, full world height (384 blocks in 1.18+, from Y = -64 to Y = 320). Y is not divided by chunks.
  • Boundaries: chunk borders fall at block coordinates divisible by 16 (..., -16, 0, 16, 32, ...). Hold F3+G in Java to render the visible chunk-boundary overlay.
  • Loaded area: at render distance R, roughly (2R+1)² chunks load around the player. Render distance 12 → ~625 chunks loaded.
  • Forceload cap: 256 force-loaded chunks per dimension by default. That's exactly a 16 × 16 chunk square — try /forceload add X Z X+255 Z+255 (block coords) to load it.
  • Slime chunks: approximately 1 in 10 chunks. Deterministic from the world seed — see the Slime Chunk Finder tool for a per-chunk lookup.

Related commands & tools

FAQ

How big is a chunk in Minecraft?
Every chunk is 16 blocks wide on the X axis and 16 blocks on the Z axis, and spans the entire world height — 384 blocks in Minecraft 1.18+ (from Y = -64 to Y = 320). So one chunk contains 16 × 16 × 384 = 98,304 blocks worth of column.
How many chunks is a render distance of 12?
12 chunks of radius = 192 blocks. The actual number of loaded chunks is roughly (2×r+1)² = 625 chunks at render distance 12. Java Edition's default is 12; Bedrock's default is 10.
How do I find what chunk I'm in?
Take your block X and Z and divide each by 16, rounding down (floor). For example, block coordinate (152, 67, -340) is in chunk (9, -22) because floor(152/16) = 9 and floor(-340/16) = -22. The F3 debug screen in Java shows your chunk coords directly.
What's the difference between simulation distance and render distance?
Simulation distance is how many chunks tick (mobs spawn, redstone runs, crops grow). Render distance is how many chunks draw on screen. Java has separate sliders for both; default simulation is 8 chunks, default render is 12. You can render chunks you don't simulate (you'll see distant terrain but mobs won't spawn there).
How does /forceload work?
/forceload add <X> <Z> takes block coordinates and loads the chunk containing them. /forceload add <X1> <Z1> <X2> <Z2> loads the rectangular region of chunks between the two corners. The total is capped at 256 chunks force-loaded per dimension by default — exactly a 16×16 chunk square.
What is a slime chunk?
A slime chunk is a specific chunk where slimes can spawn at any light level below Y=40. They're deterministically chosen by the world seed — about 1 in 10 chunks is a slime chunk. Build a slime farm by locating one (see the Slime Chunk Finder) and digging out the spawning area between Y=-64 and Y=40.