Gematria v1.0.0
This is the initial release of Gematria. Please report any issues you encounter or features you’d like to see added.
Published 10/07/2023
A Java library / CLI tool for calculating the Gematria value of strings.
+ Hebrew
+ English
+ Simple
Select the Gematria encoding methods you wish to use, then calculate the hash with the following:
java -jar gematria.jar hebrew Hello World
java -jar gematria.jar english Hello World
java -jar gematria.jar simple Hello World
Select the Gematria encoding methods you wish to use, then calculate the hash with the following:
long hash = Gematria.HEBREW.encode("Hello World");
hash = Gematria.ENGLISH.encode("Hello World");
hash = Gematria.SIMPLE.encode("Hello World");
This is the initial release of Gematria. Please report any issues you encounter or features you’d like to see added.