Lorem Ipsum Generator
Generate placeholder text — paragraphs, sentences, or words — in deterministic seeded form. Starts with the classic "Lorem ipsum dolor sit amet" opening.
Result
How to use this calculator
- Pick whether you want paragraphs, sentences, or words.
- Set a count (1–200).
- Leave the seed at 1 for the canonical sample, or change it to get a different version. Same seed always = same output.
- Copy the full output from the "Full output" breakdown row.
About this calculator
Designers, writers, and developers use lorem ipsum as filler so they can review layout without being distracted by the meaning of the words. The classical opening — "Lorem ipsum dolor sit amet, consectetur adipiscing elit…" — is scrambled Latin from Cicero’s "De finibus bonorum et malorum" (1.10.32), a 45 BCE essay on the nature of good and evil. This generator produces paragraphs, sentences, or words deterministically: same seed in, same text out. That matters for design reviews where you want every reviewer to see the same draft, not a different randomisation per reload.
How it works — the formula
rng = mulberry32(seed)
sentence ∈ Uniform([6, 17] words)
paragraph ∈ Uniform([3, 6] sentences)Deterministic PRNG → reproducible output. The word distribution is uniform across the classical word pool; word counts per sentence and sentence counts per paragraph follow uniform ranges chosen to match real lorem-ipsum samples used in print design.
Worked examples
- Inputs:
- unit=paragraphs, count=1, seed=1, startWithClassic=yes
- Output:
- starts with "Lorem ipsum dolor sit amet, consectetur adipiscing elit…"
- Inputs:
- unit=words, count=50, seed=42
- Output:
- 50-word filler, reproducible
- Inputs:
- unit=sentences, count=3, seed=7 (twice)
- Output:
- identical output both times — deterministic
Limitations
- Latin-only word pool — for non-Latin design reviews (CJK, RTL languages) use a script-appropriate filler.
- Not random across reloads — change the seed if you want different output.
- Sentence/paragraph length ranges are fixed; the tool does not yet expose them as inputs.
Always remove lorem-ipsum copy before publishing. The PRNG is deterministic but produces text indistinguishable from random Latin gibberish.
Frequently asked
Where does the text come from?+
Why is the output deterministic?+
How long is "1 paragraph" exactly?+
Is it real Latin?+
Why does my draft sometimes ship with lorem ipsum?+
Related calculators
More tools you might like
Hand-picked tools that pair well with this one — same audience, same intent.
Count words, characters, paragraphs, and sentences in any pasted text, plus reading time at 250 / 200 / 150 WPM.
Calculate what X% of a value is, find what percentage one number is of another, or compute the percentage change between two numbers.
Six-mode percentage tool — X% of Y, X is what % of Y, % change, % difference (symmetric), add %, and subtract %.
Generate strong, deterministically-seeded passwords. Pick length, character classes, and bulk-count. All client-side — passwords never leave the browser.
Generate a responsive CSS clamp() value that scales smoothly between a minimum and maximum size across a viewport range.
Generate a harmonious color palette — complementary, analogous, triadic, tetradic, or monochromatic — from a base color.