Shuffle Text
Shuffle lines, words or characters of a text using a Fisher-Yates shuffle. Useful for raffles, tests and generating random samples. Everything in your browser.
Randomize a list without a spreadsheet
You have a list of 200 names and need a random order for an internal draw, or a set of questions that should not always run in the same sequence. In a spreadsheet that means RAND() plus a helper column; in Python, five lines and an import. Pasting the text and clicking shuffle handles the same job in two seconds with nothing to install.
The shuffle is Fisher-Yates: it walks the list backwards and swaps each item with one picked from the positions not yet locked in. That is the algorithm that yields a uniform permutation, unlike the old trick of sorting by a random number. Each mode splits differently: Lines breaks on newlines (a blank line counts as an item and can land mid-text), Words splits on any whitespace and returns a single line, Characters walks code points.
In Characters mode, emoji built from several code points, such as flags and family sequences, come apart into fragments. Plain text is unaffected. The randomness comes from Math.random, which is fine for tests and casual draws but not for prize draws or anything that has to be auditable — use a witnessed, logged process for those. Keep the original text, since a shuffle cannot be undone. Everything runs in your browser.
Frequently asked questions
Can I shuffle while keeping each line intact?
Why does Words mode collapse everything onto one line?
Is the output genuinely random?
Related Tools
Language Detector by Trigram Frequency
Counts common three-letter sequences in pasted text to guess Portuguese, English or Spanish; short input returns undefined instead of a guess.
Text Truncator
Truncate text to a character or word limit. Option to add ellipsis at the end. Ideal for summaries and previews.
Fancy Text Fullwidth
Convert plain text into fullwidth (double-width) characters in the vaporwave style (full width). Copy the aesthetic text for bios, social media and nicknames.
Vocabulary Diversity (TTR)
Measure the vocabulary diversity of a text with the Type-Token Ratio (unique words divided by total). Useful for style analysis, writing and linguistics.
Compare Texts
Compare two texts line by line and highlight differences (same, added, removed). 100% in your browser.
ASCII Art Generator
Convert text into stylized ASCII art. Generate banners, decorative headers and borders in various styles using text characters. Entirely in your browser.