Reverse Letters
Spell every word backwards without moving the words. "reverse letters" becomes "esrever srettel" — the sentence keeps its shape and rhythm while each word becomes unreadable on its own.
This is the mode that makes backwards text look deliberate rather than chaotic. Because word boundaries and punctuation stay put, the result still scans as a sentence, which is why it works better than a full reversal for puzzles and captions.
Want the whole string reversed instead? Reverse everything
Letters Backwards Examples
The words stay where they are; only their spelling flips. Watch what happens to punctuation in row two.
| Input | Output | What it shows |
|---|---|---|
| hello world | olleh dlrow | Two words, each spelled backwards, still in order. |
| Hello, World! | ,olleH !dlroW | Punctuation is part of the word, so it lands at the front. |
| reverse the letters in a word | esrever eht srettel ni a drow | A full sentence keeps its word count and rhythm. |
| level radar civic | level radar civic | Palindromic words are unchanged — a good correctness check. |
| ABC def GHI | CBA fed IHG | Capitalisation stays with its letter and ends up at the word end. |
| two spaces here | owt secaps ereh | Repeated spaces are preserved exactly as typed. |
| line one line two | enil eno enil owt | Line structure survives; only the letters within words flip. |
| email@example.com | moc.elpmaxe@liame | No special-casing: the whole token reverses as one word. |
How Letter Reversal Works
The tool splits on whitespace, reverses the letters of each non-whitespace chunk, and rejoins. Three details make that behave well.
Whitespace is captured, not consumed
The split keeps the separators, so every space, tab and newline is put back byte for byte. That is why a paragraph with irregular indentation comes out looking like the original rather than reflowed.
Each chunk reverses by visible character
Within a word the reversal iterates grapheme clusters rather than UTF-16 units or bare code points, so an emoji, a flag or an accented letter inside a word moves as one piece instead of being taken apart.
A "word" is anything between spaces
There is no dictionary and no language model. "don't" and "email@example.com" are each one word, so they reverse whole. That is predictable, which matters more than being clever.
The result is still ordinary text
No lookalike characters are involved, so the output copies and pastes anywhere, respects your font, and can be reversed back to the original by running it through the tool a second time.
Letters, Words or Everything?
The same sentence through the three reversals people confuse most often. Only the first row keeps both the word order and the sentence shape.
Shared input: Reverse letters in words
| Transformation | Result | Reach for it when |
|---|---|---|
| Reverse each word's letters | esreveR srettel ni sdrow | You want every word spelled backwards but the sentence intact. |
| Reverse word order | words in letters Reverse | You want the last word first and every word readable. |
| Reverse everything | sdrow ni srettel esreveR | You want one continuous end-to-start reversal. |
| Upside down letters | spɹoʍ uı sɹǝʇʇǝl ǝsɹǝʌǝᴚ | You want the letters rotated rather than reordered. |
Letter Reversal Edge Cases
Four situations where the output surprises people, and why each one behaves the way it does.
Punctuation moves to the start of its word
"World!" becomes "!dlroW" because the exclamation mark is part of that chunk. For cleaner puzzle text, strip punctuation before reversing and add it back afterwards.
Capital letters end up at the end
Reversal does not touch case, so "Hello" becomes "olleH" with the capital in the final position. That is correct behaviour, but it is why reversed sentences look odd without a case pass afterwards.
Hyphenated words reverse as one unit
"well-known" becomes "nwonk-llew" rather than reversing each half. If you want each half handled separately, replace the hyphens with spaces first.
Combining accents stay attached
Where an accented letter is stored as a base letter plus a combining mark, the two are treated as one character and move together. Precomposed and decomposed text reverse to the same visible result.
Using Reversed Letters
The output contains only characters you already had, so no platform will reject or mangle it.
Instagram and TikTok captions
A caption with reversed letters keeps its line breaks and hashtag positions, so the post still looks composed. Keep hashtags unreversed — a reversed hashtag is a different tag and reaches nobody.
Discord and gaming chat
Popular for in-joke channel names and bot commands. Bear in mind that a reversed command will not trigger the bot, which is occasionally the point.
Word games and worksheets
Reversed spellings are the standard format for "unscramble the word" exercises where there is exactly one right answer, unlike an anagram.
Print and craft projects
Because word positions are preserved, reversed-letter text keeps its line lengths, which makes it far easier to lay out on a poster or a card than a fully reversed block.
Why Reverse the Letters
Spelling puzzles with one answer
Every reversed word has exactly one correct reconstruction, which makes marking trivial compared with anagram-based exercises.
Readable-looking mystery text
The sentence shape survives, so reversed-letter text looks like language at a glance and only breaks down when you try to read a word. That uncanny quality is what makes it good caption material.
Finding words that reverse into words
Paste a word list to spot semordnilaps in bulk — pairs like stop/pots and drawer/reward that read as different words backwards.
Phonics and decoding practice
Reversing letters forces a child to sound out a word rather than recognise its shape, which is a useful diagnostic for whole-word guessing.
Frequently Asked Questions
Type or paste the word into the box above. Each word is spelled backwards in the output while staying in its original position. Copy the result with one click.
Reversing letters flips the spelling of each word but leaves the words where they are. Reversing text flips the entire string, so the last word ends up first and spelled backwards too.
Yes, exactly. Multiple spaces, tabs and newlines are all preserved, so the text keeps the layout you pasted in.
It is treated as part of the word it touches, so it ends up at the opposite end of that word. Strip punctuation first if you want clean reversed spellings.
Yes. Running reversed-letter text through the tool a second time restores the original, because reversing each word twice returns it to its starting order.
Yes, and that is a handy correctness check. Words like level, radar and civic come out identical because they read the same in both directions.
Yes. Emoji inside a word move as whole units, including flags, skin-tone variants and multi-part emoji joined with zero-width joiners.
No. The transformation runs entirely in your browser and nothing is sent to a server.
Related Text Tools
Text Reverser
Compare six backwards-text results side by side from one input.
Backwards Text Generator
Turn any sentence into backwards text, character by character.
Text Inverter
Invert text three ways — backwards, upside down or mirrored — and compare.
Write Backwards Tool
Type forwards and read backwards, plus how to write in reverse by hand.
Sentence Reverser
Reverse a whole sentence or message, by word order or letter by letter.
Backwards Text Translator
Translate text to backwards and decode backwards text in one pass.
Character Reverser
Code-point-accurate character reversal that keeps emoji intact.
Reverse Words Tool
Reverse word order while every word stays readable.