| # Encoding Layer | |
| This folder contains the Reverse Unicode and Glyph Seal system. | |
| ## Files | |
| - `reverse-unicode.js` β Reversible character mirroring and reversal | |
| - `glyph-seal.js` β Creates visual seals with reversed/mirrored text + SHA-256 | |
| ## Functions | |
| - `reverseUnicode(input)` β Reverses string character order | |
| - `mirrorGlyphs(input)` β Maps characters to Unicode mirror glyphs | |
| - `restoreUnicode(input)` β Restores mirrored text to original | |
| - `GlyphSeal.create(input)` β Creates full glyph seal with hash | |
| ## Status | |
| **ONLINE** β Pure JavaScript, no external dependencies. | |
| ## Commands | |
| - `ReverseUnicode "text";` β Reverse a string | |
| - `GlyphSeal "text";` β Create glyph seal with hash | |
| - `RestoreUnicode "text";` β Restore mirrored text | |