Konloch Software

Gematria

Published 10/07/2023

A Java library / CLI tool for calculating the Gematria value of strings.

What Does It Do?

  • Calculates the Gematria value of strings from CLI, or as a dependency.

Links

Requirements

  • Java 8 or greater

Media

Gematria - Screenshot(Click to enlarge)

Encoding Methods

+ Hebrew
+ English
+ Simple

How To Use (CLI)

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

How To Use (API)

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");

Latest Updates