English Gematria needs an explicit alphabet contract
Gematria historically refers to assigning numerical values to letters or larger textual units, but the chosen language, alphabet, spelling, and value table determine the arithmetic. This implementation is not a Hebrew or Greek calculator and does not transliterate into either script. It accepts a Unicode phrase, counts only Basic Latin letters A through Z without case distinction, and ignores spaces, digits, punctuation, emoji, accented letters, and every other code point.
The Unicode Basic Latin chart gives the exact ranges: uppercase letters occupy U+0041–U+005A and lowercase letters U+0061–U+007A. Tying the allowlist to code points prevents the vague instruction “ignore symbols” from changing with browser locale. If the intended input is a birth date rather than text, the Life Path Calculator uses a separate numerology convention and should not be treated as another column in the same system.
Two totals come from one inspected sequence of letters
The per-letter table lets a reader recompute the answer instead of trusting a single decorative number.
- Filter without transliteration
Walk through Unicode code points in their entered order. Convert an ASCII lowercase letter to the same alphabet position as its uppercase form, append it to the counted sequence, and increment the ignored count for anything else.
- Add English Ordinal values
Assign A=1, B=2, and so on through Z=26. The English Ordinal total is the ordinary sum of those positions, with no hidden word separator or special final-letter rule.
- Add Full Reduction values
Map alphabet positions onto a repeating 1–9 cycle: A through I receive 1 through 9, J starts again at 1, and Z receives 8. Sum those per-letter reductions directly; do not repeatedly digit-sum the final ordinal total and assume it is the same method.
- Preserve running totals
Each row shows the source position, counted letter, both assigned values, and both cumulative sums. A transcription error can therefore be located at the first divergent row.
Accented text exposes why normalization policy matters
Precomposed Café
In the precomposed spelling, é is one non-ASCII code point. This version counts C, A, and F, ignores é, and does not silently replace it with E.
Decomposed Cafe plus combining acute
In a decomposed sequence, E remains an ASCII code point and the following combining accent is non-ASCII. The calculator counts C, A, F, E and ignores the accent. Visually similar strings can therefore produce different totals.
A transliterated CAFE
If the user deliberately types plain ASCII CAFE, all four letters count. That is a changed input, not an automatic normalization service. Record the exact counted-letter sequence when comparing results.
A worked phrase should reconcile letter by letter
For LOVE, the ordinal assignments are L=12, O=15, V=22, and E=5, totaling 54. Under Full Reduction, those same positions map to 3, 6, 4, and 5, totaling 18. The example demonstrates the table, but neither 54 nor 18 has a unique empirical meaning. Another phrase can share a total because addition discards order and many different letter combinations sum alike.
Use the Scientific Calculator to independently add a copied list of displayed letter values, or the Basic Calculator for a short manual check. Those arithmetic tools can confirm addition, not the cultural interpretation of a matched total. A numerically correct sum and a historically justified reading are two separate questions.
Coincidence is not a controlled interpretation
A transparent number assignment can support textual study, puzzles, or comparison, but the result alone cannot establish intent, causation, or prediction.
- State the language, spelling, case policy, ignored characters, and value scheme. Changing any of them changes the experiment and may manufacture or erase a match.
- Do not search many spellings and report only the one that yields a striking total. That selection process makes coincidences easier to find and harder to evaluate honestly.
- Keep historical Hebrew, Greek, or other gematria claims tied to scholarship about the original script and context. This English ASCII worksheet does not authenticate those readings.
- Do not use a total for health, legal, financial, relationship, education, employment, identity, or safety decisions. The output is deterministic text arithmetic, not a diagnosis, personality measure, or forecast.