There is a clay disk of undeciphered symbols at the archaeological museum of Heraklion. For research purposes (perhaps), the symbols have been assigned unicode points, as follows:
so, it turns out the reason for this is โฆ no glyphs!
If you have a font that has them isntalled on your system, like Symbola (download), then you may be able to render these ancient standard (but undeciphered) little entities to your own satisfaction, but very little none of almost anyone elseโs.
โ all photos Copyright ยฉ 2022-2024 George D Girton all rights reserved
Source Code
---title: "Phaistos Disk"author: "George Girton"date: "2022-05-19"categories: [analysis, retro, R]image: "PhaistosDisc_DSC_3800_Web8.png"---## mystery diskThere is a clay disk of undeciphered symbols at the archaeological museum of Heraklion. For research purposes (perhaps), the symbols have been assigned unicode points, as follows:[unicode points for symbols from the Phaistos disk](https://unicode-table.com/en/blocks/phaistos-disc/)However, when you use these unicodes, what actual shows up (at least at time of writing) is just empty squares.```{r}library(tibble)ontos <-c("\U1F378","\U1F431")ontosprint("that's fine")ontos4 <-c("\U1F378","\U1F431", "\U101E2", "\U101D0")ontos4print("that's not so fine!")catcodes <-tribble(~unicat, ~description,"\U1F638","eyes smiling","\U1F639","tears laughing","\U1F63A","smiling","\U1F63B","eyes hearts","\U1F63c","smirk","\U1F63D","kiss","\U1F63E","frown","\U1F63F","single tear","\U1F640","scream!","\U1F408","canonical cat","\U1F431","schematic","\U1F43E","paws","\U1F378", "martini","\U10090", "Linear B Ideogram 122 olive")catcodesprint("you can go literal, too!")catpictos <-"๐ธ ๐ ๐ฑ ๐พ ๐ธ ๐น ๐บ ๐ป ๐ผ ๐ฝ ๐พ ๐ฟ ๐ ๐"print(catpictos)message2 <-c("๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ก ๐ข ๐ฃ ๐ค ๐ฅ ๐ฆ ๐ง ๐จ ๐ฉ ๐ช ๐ซ ๐ฌ ๐ญ ๐ฎ ๐ฏ ๐")print(message2)```so, it turns out the reason for this is ... no glyphs!If you have a font that has them isntalled on your system, like [Symbola (download)](https://www.fontspace.com/symbola-font-f22021), then you may be able to render these ancient standard (but undeciphered) little entities to your own satisfaction, but very little none of almost anyone else's.---