Spellement

How to Spell Words with Periodic Table Elements

· 4 min read
9 F Fluorine 92 U Uranium 14 Si Silicon 8 O Oxygen 7 N Nitrogen

What Is Element Spelling?

Every element on the periodic table has a one- or two-letter symbol — H for Hydrogen, He for Helium, Li for Lithium, and so on. When you line up the right symbols, they can spell out real words. CUTE becomes Cu (Copper) + Te (Tellurium). NO is just No (Nobelium). This is what Spellement does: it finds ways to spell a word using element symbols and ranks the best results.

The idea is simple, but the combinations multiply fast. A five-letter word might have dozens of valid spellings. A ten-letter word can have thousands. Spellement's algorithm explores these combinations and ranks the results so you see the best ones first.

How the Algorithm Works

Spellement uses two approaches depending on word length:

  1. Recursive backtracking for short words (5 characters or fewer). It walks through the word letter by letter, trying every element that could match at each position, and collects all valid paths.
  2. Dynamic programming for longer words. Instead of recursion, it builds solutions from left to right in a table, which avoids redundant work and prevents stack overflow on long inputs.

Both approaches handle three cases for two-letter elements:

  • Full match — both letters are used (e.g., He spells "HE")
  • First letter only — the first letter is emphasized, the second is shown but de-emphasized (e.g., using At to spell just "A")
  • Second letter only — the second letter is emphasized (e.g., using Na to spell just "A")

This means the letter "A" alone has multiple element options: Argon (Ar), Aluminum (Al), Astatine (At), and more. The algorithm tries all of them.

Scoring and Ranking

With potentially thousands of results, ranking matters. Spellement scores each spelling on several factors:

  • Length — fewer elements is better. Spelling MOTHER as Mo-Th-Er (3 elements) beats M-O-Th-Er (4 elements).
  • Full matches — using both letters of a two-letter element earns a bonus.
  • Partial emphasis penalty — using only one letter of a two-letter element costs points.
  • Familiarity — common elements like Carbon and Oxygen score slightly higher.

The top result is almost always the most visually clean and chemically interesting spelling.

Examples to Try

Here are some words that produce great results:

  • GENIUS — Ge (Germanium) + Ni (Nickel) + U (Uranium) + S (Sulfur)
  • TEACHER — Te (Tellurium) + Ac (Actinium) + He (Helium) + Er (Erbium)
  • CARBON — C (Carbon) + Ar (Argon) + B (Boron) + O (Oxygen) + N (Nitrogen)
  • HELLO — He (Helium) + Li (Lithium... partial) + Lo... actually, this one has over 1,000 valid spellings!

Some words are impossible to spell. The letter J, for instance, doesn't appear in any element symbol, so any word containing J can't be spelled. The letters Q and X are also absent from the periodic table.

The Periodic Table of Words

Every element has a different "spelling power" — how many words it can help spell. Common letters like S (Sulfur), N (Nitrogen), and O (Oxygen) appear in thousands of words. Rare elements like Uue or Og barely appear in any.

Spellement's Periodic Table of Words ranks all 118 elements by their spelling power. You can click any element to see every word it helps spell, discover which elements pair together most often, and explore the chemistry behind each one.

Get Started

Ready to try it? Head to the Spell tool and type any word. You'll see the best ways to spell it with elements, ranked by quality. Pick your favorite, customize the design, and export it as a high-quality image.

Whether you're a student looking for a creative science project, a teacher making classroom decorations, or just someone who loves wordplay — element spelling is a surprisingly deep rabbit hole. Have fun exploring it.