Random Letter Sequence
Multi-letter random strings — like QLAYER — at any length from 1 to 100, with or without repeated letters, in the case you choose. Every possible sequence is exactly equally likely.
Generate a letter sequence
Each position is an independent uniform draw — or switch on "no repeats" for all-distinct letters.
Sequences for games, drills, and test data
A letter sequence is the raw material of a surprising number of activities. Word-scramble rounds hand players a fixed set of letters to build from; memory training uses progressively longer sequences to recite back; classroom cipher exercises need keys and nonsense strings that no one chose; scavenger hunts assign each team a letter string to find object-by-object; and developers reach for random letter runs as honest placeholder data that spell-checkers won’t silently "fix". The example above, QLAYER, was drawn at build time by the same tested engine, from a fixed byte script so the page is reproducible.
No repeats, up to a full shuffle
With "no repeats" on, drawn letters leave the pool, so a length-26 uppercase draw is a uniformly random ordering of the entire alphabet — for instance FEDKGACNRIVBZMPOTQXSLUJYHW (again a deterministic build-time draw). That is the fair way to schedule "letter of the day" rotations or assign distinct initials to players. Ask for 27 unique letters and the tool refuses with an explanation; switch to mixed case and the pool doubles to 52, where A and a count as different letters.
An honest note on passwords
Letter sequences look like passwords, but they make poor ones: a single-case letters-only string carries only about 4.7 bits of entropy per character, so even 10 letters (~47 bits) is below what current guidance considers strong. This tool will not pretend otherwise. For real credentials, use a purpose-built tool that mixes character classes and reports honest entropy — for example the password generator on Sumvia.net, our sister calculator site, which uses the same rejection-sampling discipline as this engine.
Frequently asked questions
What is the difference between "with repeats" and "no repeats"?
With repeats (the default), every position is an independent uniform draw from the pool, so AA is as legitimate as AB — there are 26^n equally likely sequences of length n. With "no repeats" on, the engine samples without replacement, so all letters in the sequence are distinct; a sequence of all 26 letters is then a uniformly random shuffle of the alphabet.
How many different sequences are possible?
With repeats, 26 to the power of the length: 456,976 four-letter sequences, about 308.9 million six-letter ones. Without repeats it is 26×25×24×… — still 358,800 for four letters. Every one of those sequences is exactly equally likely; the tool never favors pronounceable or "nice looking" strings.
Can I use a sequence as a password?
Please don’t. Letters-only strings have far less entropy per character than a proper password: a 10-letter single-case sequence is about 47 bits, which is weak by modern standards. These sequences are for games, drills, codes you will read aloud, and test data. For real credentials, use a dedicated password generator that mixes character sets and reports honest entropy, like the Sumvia password generator.
Why does my sequence contain a double letter?
Because uniform randomness produces repeats more often than intuition expects — with repeats allowed, the chance that a 6-letter sequence has at least one repeated letter is about 46%. If you never want doubles, switch on "no repeats".
Is anything sent to a server?
No. Sequences are generated locally in your browser from your device’s cryptographic random source, and are never transmitted, logged, or stored.
Uniform means uniform: all sequences of a given length and pool are equally likely — never weighted toward pronounceable strings or English letter frequency. Generation is local to your browser; nothing is transmitted. See the methodology page.