craiyon logo

Three glowing ancient Egyptian symbols for life, protection, and stability on a stone wall, flanked by glowing crystals, ankhs, and Eyes of Horus.

Three glowing ancient Egyptian symbols for life, protection, and stability on a stone wall, flanked by glowing crystals, ankhs, and Eyes of Horus.

<html> <head> <title>Ankh-Infused Phrase Generator</title> </head> <body> <h1>Ankh-Infused Mystical Phrase</h1> <div id="output"></div> <button onclick="generate()">Generate Phrase</button> <script src="https://cdn.jsdelivr.net/npm/perchance@0.2.0/dist/perchance.min.js"></script> <script> const generator = perchance.createGenerator({ glyph: { options: [ { symbol: "𓋹", sound: "ꜥnḫ", meaning: "Life" }, { symbol: "𓂀", sound: "wdjꜣt", meaning: "Protection" }, { symbol: "𓆣", sound: "djd", meaning: "Stability" }, { symbol: "𓊽", sound: "mꜣꜥt", meaning: "Truth" }, { symbol: "𓇳", sound: "rꜥ", meaning: "Sun" } ] }, quality: ["eternal", "divine", "radiant", "sacred", "enduring"], essence: ["spirit", "breath", "light", "harmony", "essence"], phrase: { create() { let glyph1 = this.glyph.random(); let glyph2 = this.glyph.random(); while (glyph2.symbol === glyph1.symbol) { glyph2 = this.glyph.random(); } let quality = this.quality.random(); let essence = this.essence.random(); return { hieroglyphs: `${glyph1.symbol} ${glyph2.symbol}`, transliteration: `${glyph1.sound} ${glyph2.sound}`, translation: `${quality} ${glyph1.meaning.toLowerCase()} of ${glyph2.meaning.toLowerCase()} ${essence}` }; } }, output: { create() { let p = this.phrase; return `Hieroglyphs: ${p.hieroglyphs}<br>Transliteration: ${p.transliteration}<br>Translation: ${p.translation}`; } } }); function generate() { document.getElementById("output").innerHTML = generator.output(); } // Generate once on page load See more