Author | MessyBlob |
Date | 02 April 2024 |
Categories | Minecraft |
You can make great content using block letters in Minecraft signs, with two letters per sign. Full-block and slab-block characters are easier to work with than quarter-block characters.
▀▄ ▄▀ ▒ █ ░ █▒█▒ ░ ░░▒░
I found it easiest to use a text editor that supports Unicode, like VSCode, and insert that into text for a Minecraft command.
A command to create a sign with text:
/setblock ~ ~1 ~ oak_wall_sign{front_text:{messages:['["line 1"]','["line 2"]','["line 3"]','["line 4"]']}} replace
You can change this to write a different message on the reverse, and make the sign face another direction with attribute facing:'east'
.
These full-block characters are good for creating blocky shapes and 9 × 4 pictures in five shades, but with only four rows in a sign, it's a challenge to make good text with them.
Shade | Minecraft width | Blocks | Description |
0% | 8 px | ஸ Ideographic space | |
25% | 8 px | ਟ | |
50% | 8 px | ਠ | |
75% | 8 px | ਡ | |
100% | 8 px | ਜ |
Use these to create 8-row bitmaps on a 4-row sign. However, alignment is tricky, because block widths vary.
n/4 | Minecraft width | Blocks | Description | Source |
0/4 | 8 px |
| ஸ Ideographic space | ascii.png |
0/4 | 4 px |
| Standard space | ascii.png |
1/4 | 5 px |
| unifont.zip | |
2/4 vertical | 5 px |
| unifont.zip | |
2/4 horizontal | 8 px |
| ascii.png | |
3/4 | 5 px |
| unifont.zip | |
4/4 | 5 px |
| ਝ | unifont.zip |
4/4 | 8 px |
| ਜ | ascii.png |
Pasting to the Minecraft command line converts special spaces to normal spaces, so you'll need to paste special spaces directly into the sign. Rather than confuse regular spaces with wide spaces, try entering #
for wide spaces for the command line, and then replacing each #
with a pasted wide space in the Minecraft sign editor.
/setblock ~ ~1 ~ oak_wall_sign{front_text:{messages:['["▀██▀#██▀▀"]','["#██##██▄▄"]','["#██##██##"]','["#▀▀##▀▀▀▀"]']}} replace
If you're in control of the server, you can use a texture pack with a modified unifont.zip
, or use mods for a different sign block that displays large text.
unifont.zip
characters are unsupported in Minecraft Bedrock Edition [minecraft.wiki].