A Guide to Reading Poneglyphs
The stone tablets hold the key to the Void Century. Here is what we know about deciphering them.
The Poneglyphs are indestructible stone tablets scattered across the world, each inscribed with text in an ancient language that predates all modern writing systems. They were created during the Void Century by a civilization whose very existence the World Government has attempted to erase.
There are four types of Poneglyphs. The Historical Poneglyphs record events of the Void Century. The Instructional Poneglyphs provide guidance on finding other tablets. The Road Poneglyphs — of which there are exactly four — reveal the location of Laugh Tale when their information is combined. And the Rio Poneglyph, formed by connecting the Historical Poneglyphs, tells the true history of the world.
The script itself is logographic — each symbol represents a concept rather than a sound. The grammar follows a subject-object-verb order, with temporal markers embedded within the verb forms. What makes the language particularly challenging is its contextual layering: a single glyph can carry different meanings depending on the surrounding symbols and the physical location of the Poneglyph itself.
To read a Poneglyph, one must understand not just the symbols but the civilization that created them. The Great Kingdom's writing system was designed for permanence and precision. Every line, every curve serves a purpose. There is no ornamentation — only meaning compressed into stone.
Appendix — typescript
1// Poneglyph Classification System2type PoneglyphType =3 | "historical" // Records of the Void Century4 | "instructional" // Guides to other Poneglyphs5 | "road" // 4 tablets → location of Laugh Tale6 | "rio"; // Combined truth of the world7 8interface Poneglyph {9 type: PoneglyphType;10 location: string;11 translated: boolean;12 translator?: "Nico Robin" | "Kozuki Clan";13}14 15// Known Road Poneglyphs16const roadPoneglyphs: Poneglyph[] = [17 { type: "road", location: "Zou", translated: true, translator: "Nico Robin" },18 { type: "road", location: "Whole Cake Island", translated: true, translator: "Nico Robin" },19 { type: "road", location: "Wano Country", translated: true, translator: "Nico Robin" },20 { type: "road", location: "Unknown", translated: false },21];