A Gradle library for bottom, following the bottom spec.
Javadocs here
You can install bottom from JitPack
import com.github.bottomSoftwareFoundation.bottom.Bottom;
public class Main {
public static void main(String[] args) {
String string = "Hello world!";
String bottom = Bottom.encode(string);
String decoded = Bottom.decode(bottom);
System.out.println(string);
// Hello world!
System.out.println(bottom);
// πβ¨β¨,,ππππ,πππππ₯Ί,,,πππππ₯Ί,,,ππππβ¨,ππβ¨β¨β¨,,ππππβ¨π₯Ί,,,,ππππβ¨,ππππβ¨,,,,πππππ₯Ί,,,ππππππβ¨β¨β¨,,,ππ
System.out.println(decoded);
// Hello world!
}
}
https://github.com/bottom-software-foundation/awesome-bottom
Learning project for Gradle, JUnit4, Github Actions, and JitPack.