Letter Sum Calculator

Adds up the alphabet position of every letter in your text (a=1, b=2, through z=26), case-insensitive and ignoring non-letters, a simple technique used in numerology, word games, and name-value puzzles. A free online tool from Staaarter, right in your browser.

Runs locallyUpdated 2026-07-23

Overview

Introduction

Adding up the alphabet position of every letter in a word or phrase, a=1 through z=26, is a small technique that shows up in numerology, word puzzles, and quick name-value comparisons.

This tool does the addition for you instantly, and it runs entirely client-side, so nothing you paste is ever uploaded to a server.

What Is Letter Sum Calculator?

A calculator that sums the alphabet position of every letter in your text, case-insensitive, ignoring spaces, digits, and punctuation.

It runs entirely client-side as part of this site's String Tools collection, so nothing you paste is ever uploaded to a server.

How Letter Sum Calculator Works

The text is lowercased and every alphabetic character is matched, then each letter's value (its position from a=1 to z=26) is added to a running total.

The transformation happens synchronously in JavaScript the moment you type, with no network round trip involved.

When To Use Letter Sum Calculator

Use it to compare the letter-sum of two names or words, check a numerology-style calculation, or explore word-game puzzles based on letter values.

It's a fast way to get the answer without opening a spreadsheet or writing a one-off script just to check.

Features

Advantages

  • Case-insensitive, so uppercase and lowercase input produce the same sum.
  • Reports both the total and the average value per letter in one pass.

Limitations

  • Only handles the basic Latin alphabet (a-z); accented and non-Latin letters are ignored, not scored.

Examples

Summing a short word

Input

cab

Output

Letter sum: 6
Letters counted: 3
Average value per letter: 2.00

c=3, a=1, b=2, which add up to 6 across 3 letters.

Best Practices & Notes

Best Practices

  • Strip out any unrelated text (like a title or label) before calculating if you only want the sum of a specific name or word.

Developer Notes

Implemented as `input.toLowerCase().match(/[a-z]/g)` to isolate letters, then each letter's value is derived from `letter.charCodeAt(0) - 96`, since lowercase 'a' has char code 97.

Letter Sum Calculator Use Cases

  • Comparing the letter-sum of two names or phrases
  • Numerology-style word or name calculations
  • Word-game and puzzle-solving involving letter values

Common Mistakes

  • Expecting accented letters or non-Latin scripts to be scored; only plain a-z letters are counted.

Tips

  • Use the Top Letter Finder alongside this tool if you also want to see which letters occur most often, not just their summed value.

References

Frequently Asked Questions