A base-3 text encoder using Unicode block characters. Each character's codepoint is encoded using digits 3 mapped to ▖▘▌.
This is a recreation of the text encoding functionality from the original dollcode site (dollcode.v01dlabs.sh) that no longer exists. It was reverse-engineered using:
Dollcode is a trinary (base-3) encoding system using Unicode block characters. The original site supported encoding both pure numbers and text, but used different encoding schemes for each. This implementation focuses on the text-compatible version.
Example: Hello → ▘▖▘▌▌▖▌▘▌▘▘▌▌▘▘▌▌▘▌▌
The Rust crate at dollcode.rs implements number-only encoding, which produces different output than text encoding. This implementation focuses on the text-compatible version that was available on the original dollcode.v01dlabs.sh site.