This tool transforms your text a hack code format based on Slayers X game.
Download
Source code
Limitations
- There is no guarantee that this always will always provide consistent results.
Requirements
- Java Runtime Environment, version 17 or later
Usage
java -jar txt2hack.jvm.jar --encode [TEXT] --decode [TEXT
Options
-e --encode [TEXT] - Converts text to hack code
-d --decode [TEXT] - Converts hack code to text
Example
Encoding with following command:
java -jar txt2hack.jvm.jar --encode "Lorem ipsum"
One of following results might match the output (note that the first zero can be omitted):
XX11 011010 0110X0 010X0X 011001 101X 010XX0 011011 110X1 011100 011001
XX11 11010 110X0 10X0X 011001 101X 10XX0 011011 0110X1 11100 11001
0XX11 11010 110X0 10X0X 011001 0101X 010XX0 011011 110X1 011100 11001
0XX11 011010 0110X0 010X0X 011001 0101X 010XX0 011011 0110X1 011100 11001
0XX11 11010 110X0 10X0X 11001 0101X 010XX0 011011 0110X1 11100 011001
Decoding with following command
java -jar txt2hack.jar --decode "XX11 011010 0110X0 010X0X 011001 101X 010XX0 011011 110X1 011100 011001"
Result should return Lorem ipsum.
License
This program is licensed under AGPL-3.0-only.