Slide numbered tiles together to double them. Reach the 2048 tile, then find out how much further you can push before the grid fills up.
Controls
| Input | Action |
|---|---|
| Arrow keys or W A S D | Slide every tile in that direction |
| Swipe | Slide tiles on touch screens |
| U | Undo the last move |
| R | Start a new grid |
How to play Merge 2048
Every move slides all sixteen tiles as far as they can go in one direction. When two tiles with the same number collide they merge into one tile of double the value, and a new 2 or 4 appears in a random empty cell. Your goal is the 2048 tile, which takes a minimum of 1023 merges to build.
The game ends when the grid is full and no two neighbouring tiles match. That means every move you make is really a decision about space, because a move that merges nothing still spawns a new tile and brings you closer to a locked board.
The corner strategy
Almost every strong 2048 player uses the same core idea: pick one corner and keep your largest tile there permanently. Most people choose bottom-left. You then use only three directions โ left, down, and right โ and you never press up unless you have no legal alternative.
The reason this works is that pressing up would pull your biggest tile away from its corner, and once a large tile is floating in the middle of the board it blocks merges in every direction around it. Locking it in a corner turns the bottom row into a stable staircase, where each tile is smaller than the one to its left and merges flow naturally toward the corner.
The discipline is the hard part. There will be moments where left and down both do nothing and pressing up looks tempting. Before you do, check whether a right press followed by an immediate left press restores your row. Usually it does, and you have saved the run.
When to stop building and start clearing
New players lose because they let small tiles scatter. If you have four separate 2s and 4s spread around the top of the grid, spend a few moves consolidating them before chasing a big merge. A board with fewer, larger tiles has more room to breathe than a board with the same total value split into many pieces.
Undo exists for the move you regret immediately, not as a way to brute-force the game. One undo per mistake is a reasonable habit; leaning on it constantly stops you learning to read the board.
Frequently asked questions
What is the highest tile possible?
On a four by four grid the theoretical maximum is 131072, but that requires an almost perfect run with very favourable tile spawns. Reaching 8192 is already an excellent result for most players.
Does the game ever spawn a 4 instead of a 2?
Yes. Roughly one in ten new tiles is a 4. A 4 arriving in an awkward cell is the most common cause of a run collapsing, which is why keeping spare empty cells matters.
Can I keep playing after reaching 2048?
Yes. Reaching 2048 shows a win message, and you can dismiss it and continue building toward 4096 and beyond on the same board.
Is my progress saved if I close the tab?
Your current grid and your best score are stored in your browser, so returning to the page on the same device restores where you left off.