The 13th letter of the English alphabet is M. This is a reverse lookup: given the number 13, find the letter. M sits at the exact midpoint of the 26-letter alphabet, dividing it into two equal halves. Whether you are decoding a cipher, solving a puzzle, or just curious, this page gives you the answer and the context. For instant number-to-letter conversion, use our letters to numbers converter.
How to Convert Any Number to Its Letter
Converting a number (1-26) to its corresponding letter is straightforward. The A1Z26 system maps 1 = A, 2 = B, 3 = C, and so on up to 26 = Z. There are two methods:
Method 1: Count from A
Start at A and count forward. A is 1, B is 2, C is 3... counting to 13 lands on M.
Method 2: The Formula
In programming and math, use this formula:
Letter = character at position (number + 64) in ASCII
For 13:
13 + 64 = 77
ASCII 77 = 'M'
// JavaScript
String.fromCharCode(13 + 64) // "M"
# Python
chr(13 + 64) # 'M'
// Java / C#
(char)(13 + 64) // 'M'The +64 offset works because uppercase A starts at ASCII value 65. Our numbers to letters converter automates this lookup instantly.
Complete Number-to-Letter Reference Table
| Number | Letter | Number | Letter |
|---|---|---|---|
| 1 | A | 14 | N |
| 2 | B | 15 | O |
| 3 | C | 16 | P |
| 4 | D | 17 | Q |
| 5 | E | 18 | R |
| 6 | F | 19 | S |
| 7 | G | 20 | T |
| 8 | H | 21 | U |
| 9 | I | 22 | V |
| 10 | J | 23 | W |
| 11 | K | 24 | X |
| 12 | L | 25 | Y |
| 13 | M | 26 | Z |
Why M at Position 13 Is Special
M's position at 13 gives it unique properties in cryptography and mathematics:
- ROT13 pivot: The ROT13 cipher rotates each letter by 13 positions. Since the alphabet has 26 letters (2 x 13), ROT13 is its own inverse. M (13) becomes Z (26), and Z becomes M. This self-reversing property makes ROT13 uniquely simple among substitution ciphers.
- Alphabet midpoint: M divides the alphabet into halves. The first half (A-M) contains 13 letters, and the second half (N-Z) contains 13 letters. This makes M useful as a divider in binary search algorithms over alphabetical data.
- 13 is prime: As a prime number, 13 has special properties in modular arithmetic, which is the mathematical foundation of many cryptographic systems.
The Significance of Number 13
The number 13 holds deep cultural significance across the world:
- Western superstition: 13 is considered unlucky in Western culture. Many hotels skip the 13th floor, airlines omit row 13, and some streets have no house number 13.
- Friday the 13th: The most superstitious day in the Western calendar occurs when the 13th of a month falls on a Friday. There are between 1 and 3 occurrences per year.
- Lucky 13 in other cultures: In Chinese culture, 13 is considered lucky because it sounds like the word for "assured growth." In Italy, 13 is traditionally a lucky number.
- American symbolism: The US was founded with 13 colonies, reflected in 13 stripes on the flag, 13 arrows in the eagle's talon, and 13 olive leaves on the Great Seal.
Decoding Ciphers with Number 13
If you encounter the number 13 in a coded message, it almost certainly represents M. Here is how to decode a full sequence:
Coded message: 13-5-5-20 / 13-5 / 1-20 / 14-15-15-14
Decoding each number:
13=M, 5=E, 5=E, 20=T → MEET
13=M, 5=E → ME
1=A, 20=T → AT
14=N, 15=O, 15=O, 14=N → NOON
Result: "MEET ME AT NOON"Decode any number sequence with our A1Z26 cipher tool.
M in Programming: Reverse Lookup Function
// JavaScript: Number to letter
function numberToLetter(n) {
if (n < 1 || n > 26) return null;
return String.fromCharCode(n + 64);
}
console.log(numberToLetter(13)); // "M"
# Python: Number to letter
def number_to_letter(n):
if 1 <= n <= 26:
return chr(n + 64)
return None
print(number_to_letter(13)) # "M"
// Batch decode an array of numbers
const numbers = [13, 5, 19, 19, 1, 7, 5];
const message = numbers.map(n =>
String.fromCharCode(n + 64)).join("");
// "MESSAGE"Decode any number: Our Numbers to Letters tool converts any number sequence back to text.
Frequently Asked Questions
What letter is number 13 in the alphabet?
The 13th letter of the English alphabet is M. It falls at the exact midpoint of the 26-letter alphabet, with A-L forming the first half and M-Z the second half. In the A1Z26 cipher, 13 always decodes to M.
How do I convert any number to its corresponding letter?
Count from A: A=1, B=2, C=3, and so on up to Z=26. In programming, use String.fromCharCode(number + 64) in JavaScript or chr(number + 64) in Python. The +64 offset aligns with ASCII where A starts at 65.
Why is M considered a special letter?
M is special because position 13 is the midpoint of the 26-letter alphabet.This makes M the pivot for the ROT13 cipher, where each letter shifts by 13 positions. M is also the Roman numeral for 1000, the NATO code word "Mike," and carries cultural associations with the number 13 (both lucky and unlucky).