https://github.com/konloch/gematria
Java library / CLI tool for calculating the Gematria value of strings.
https://github.com/konloch/gematria
gematria java java-8 java-library
Last synced: 14 days ago
JSON representation
Java library / CLI tool for calculating the Gematria value of strings.
- Host: GitHub
- URL: https://github.com/konloch/gematria
- Owner: Konloch
- License: mit
- Created: 2023-10-07T16:59:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-07T20:42:58.000Z (over 2 years ago)
- Last Synced: 2025-12-02T00:31:19.433Z (7 months ago)
- Topics: gematria, java, java-8, java-library
- Language: Java
- Homepage: https://konloch.com/Gematria
- Size: 91.8 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gematria
A Java library / CLI tool for calculating the Gematria value of strings.

## 💡 Requirements
+ Java Runtime 1.8 **or higher**
## ⚙️ How To Add As Library
[Download the latest release](https://github.com/Konloch/Gematria/releases).
## 📚 Links
* [More Information On Gematria](https://en.wikipedia.org/wiki/Gematria)
* [Website](https://konloch.com/Gematria/)
* [Discord Server](https://discord.gg/aexsYpfMEf)
* [Download Releases](https://github.com/Konloch/Gematria/releases)
## 💻 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:**
```java
long hash = Gematria.HEBREW.encode("Hello World");
hash = Gematria.ENGLISH.encode("Hello World");
hash = Gematria.SIMPLE.encode("Hello World");
```