Advertisement

Letter-to-Number Codes

Each letter is replaced by its position in the alphabet.

Learn

Each letter is replaced by its position in the alphabet.

Letter-to-number coding is the simplest substitution cipher. Each letter is replaced by its position in the alphabet: A=1, B=2, C=3, and so on up to Z=26. To decode, convert each number back to its corresponding letter. This is often the first code type introduced in aptitude tests.

A=1, B=2, C=3, ... Z=26

  • CAT = 3-1-20
  • HELLO = 8-5-12-12-15
  • 3-15-4-5 = CODE

How to recognize it

  • Numbers 1-26 (no numbers higher than 26)
  • Pattern follows alphabetical position
  • Often separated by hyphens or spaces

Common mistakes

  • Confusing letter positions (common: J=10, not 11)
  • Forgetting alphabet order mid-word
  • Not recognizing double-digit numbers (12 is L, not 1-2)

Step-by-step walkthrough

Encode the word 'CAT' using letter-to-number coding

  1. C is the 3rd letter of the alphabet
  2. A is the 1st letter of the alphabet
  3. T is the 20th letter of the alphabet

Answer: 3-1-20

Practice guidance

Coding & Decoding

Advertisement