Skip to content

Random Letter Generator

Generate one random letter or a whole set. Draw from the full alphabet, vowels only or consonants only, in upper or lower case, with or without repeats.

Category
Generators
Updated
Cost
Free · no sign-up
Letters to draw from

Up to 100 at a time.

Repeats
Case

Your letters

Choose your options and press Generate.

What a fair letter draw means

Every letter should be as likely as every other. The obvious implementation — take a random number and wrap it with a remainder — quietly favours the letters at the start of the alphabet, because 26 doesn't divide evenly into the range the machine produces. This generator discards the small tail of values that would cause the skew and draws again, so A is no more likely than Z.

The same applies to the vowel and consonant modes: the draw is made over whichever pool you've chosen, not filtered out of a full-alphabet draw.

Vowels, consonants, and where Y sits

ModeLettersCount
A–ZThe full alphabet26
VowelsA, E, I, O, U5
ConsonantsEverything else, including Y21

Y is treated as a consonant. It behaves as a vowel in words like rhythm, but classroom phonics and word games almost always classify it the other way, so that's the convention here. If you need Y in the vowel pool, draw from A–Z instead.

What people use this for

  • Word games — a starting letter for Scattergories, Categories or Boggle-style rounds, where picking one yourself always feels loaded.
  • Phonics and spelling practice — drawing a letter to sound out, or a vowel to slot into a word family.
  • Naming and brainstorming — a constraint to work against when a blank page isn't producing anything.
  • Assigning turns — draw letters instead of numbers when people already have initials to match against.

Nothing you generate is transmitted or stored. Reloading the page clears it.

How to use the Random Letter Generator

Three steps, no sign-up.

  1. Choose which letters can come up

    The whole alphabet, vowels only, or consonants only. Vowel and consonant modes are what word games and phonics practice usually need.

  2. Set how many and whether repeats are allowed

    Draw a single letter, or a set. Turn repeats off when every letter has to be different — there are only 26 to go round, so the tool will say if you ask for more.

  3. Generate and copy

    Press Generate for a fresh draw. Copy takes the whole set as a comma-separated list.

Worked examples

One letter for a word game

Inputs
A–Z · 1 letter
Result
K

Five different consonants

Inputs
Consonants · 5 letters · all different
Result
R, T, M, B, F

A vowel for a phonics drill

Inputs
Vowels · 1 letter · lower case
Result
e

Frequently asked questions

Is every letter equally likely?
Yes. The draw comes from your browser's cryptographic random source and is corrected for modulo bias, so no letter is favoured. A naive implementation quietly makes the earliest letters slightly more likely.
Which letters count as vowels?
A, E, I, O and U. Y is treated as a consonant, since that is how it is classified in most classroom and word-game contexts — if you need Y included, use the full A–Z option.
Can I draw more than 26 different letters?
No, and the tool says so rather than looping. There are 26 letters, 5 vowels and 21 consonants, so that is the ceiling for each mode when repeats are turned off.
Is anything sent anywhere?
No. The draw happens in your browser and nothing is transmitted or stored.