Picker

Picker

Random letter generator

Choose an alphabet mode and generate a large random letter for games, classroom prompts, or brainstorming.

Link copied

How random letters are selected

The tool chooses from the active alphabet with browser crypto randomness. Switch modes to pick from uppercase, lowercase, vowels, or consonants.

A random letter generator returns one letter at a time from an alphabet you choose. Four alphabet modes are supported: uppercase A through Z, lowercase a through z, vowels only (AEIOU), and consonants only (the remaining twenty-one English letters). Each draw samples one character from the active set using the browser crypto API, with equal probability across the letters in that set. The result appears in very large italic serif so it is legible from across a room, which matters for classroom prompts, group games, and warmups.

The most common use is the Scattergories-style category game: someone draws a letter, then every player has to name something in each category that starts with that letter. The same mechanic shows up in classroom phonics warmups, name-the-X icebreakers, ABC story games, and brand-name brainstorms where you want every team to start a new round on a different starting letter. Vowel-only mode is handy for spelling practice, and consonant-only mode is useful for crossword and Wordle-style warmups where vowels are usually given.

There is no list of recent letters on screen because the value of the tool is the single large letter — recording history would invite gaming the draw. The active mode is stored in the URL so a shared link opens already on the right alphabet, which is the usual setup when a teacher hands off the room or a host shares the screen with players.

How to generate a random letter

  1. Choose an alphabet mode: Uppercase for A–Z, Lowercase for a–z, Vowels for A, E, I, O, U, or Consonants for the remaining twenty-one English letters.
  2. Press Generate Letter. One character from the active alphabet appears in the large result panel.
  3. Press it again to draw another letter. Each draw is independent — duplicates are possible across consecutive presses.
  4. Switch modes whenever the game calls for a different alphabet, such as moving from full uppercase to vowels-only.
  5. Press Copy link to share the current mode so the next person opens the page on the same alphabet.

Questions people ask

Which letter modes are available, and how were they chosen?

Four modes ship with the tool. Uppercase covers A–Z, lowercase covers a–z, vowels covers AEIOU, and consonants covers BCDFGHJKLMNPQRSTVWXYZ. Y is treated as a consonant in the consonants list because that is the convention used in most classroom phonics and word games; if your activity treats Y as a vowel, draw from the full uppercase or lowercase list and reroll when Y appears.

Can this tool pick vowels only or consonants only?

Yes. Vowels mode samples from AEIOU only, which is useful for spelling warmups and vowel-pattern practice. Consonants mode samples from the remaining twenty-one English letters, which works for crossword and Wordle-style warmups where the vowels are already filled in.

Is the selected letter really random, and are duplicates possible?

Yes to both. Each draw uses crypto.getRandomValues to pick one entry from the active alphabet, and draws are independent. Two presses in a row can land on the same letter — that is normal behaviour for a fair pick, not a bug.

Can I share the current alphabet mode?

Yes. The selected mode is written into the URL whenever you change it. Copy link captures that mode so a shared link opens the page on the same alphabet without anyone having to set it again.

What games or activities work well with a random letter generator?

Scattergories, ABC scavenger hunts, name-an-X warmups ("name a country that starts with this letter"), phonics warmups, story openers ("the protagonist's name starts with…"), brainstorm seeds for naming sessions, and creative writing prompts. For activities that need a word instead of a letter, switch to the random word generator on this site.

How is this different from picking a Scrabble tile or rolling a letter die?

A Scrabble bag is weighted — there are more Es than Zs because of how often each letter appears in English. This generator is unweighted within the chosen alphabet, so a Z is just as likely as an E in uppercase mode. That makes the tool fairer for games where every letter should be equally challenging, and less suited for word games that benefit from a frequency-biased draw.