TextReverse

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.

Reverse these lettersesreveR eseht srettel

Want the whole string reversed instead? Reverse everything

0 characters0 words0 lines
Your transformed text will appear here...
0 characters0 words0 lines
Ctrl + Enter Copy resultEsc Clear

Letters Backwards Examples

The words stay where they are; only their spelling flips. Watch what happens to punctuation in row two.

InputOutputWhat it shows
hello worldolleh dlrowTwo words, each spelled backwards, still in order.
Hello, World!,olleH !dlroWPunctuation is part of the word, so it lands at the front.
reverse the letters in a wordesrever eht srettel ni a drowA full sentence keeps its word count and rhythm.
level radar civiclevel radar civicPalindromic words are unchanged — a good correctness check.
ABC def GHICBA fed IHGCapitalisation stays with its letter and ends up at the word end.
two spaces hereowt secaps erehRepeated spaces are preserved exactly as typed.
line one line twoenil eno enil owtLine structure survives; only the letters within words flip.
email@example.commoc.elpmaxe@liameNo 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 code point

Within a word the reversal iterates code points rather than UTF-16 units, so an emoji or an astral character inside a word is moved as one piece instead of being split into unpaired surrogates.

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

TransformationResultReach for it when
Reverse each word's lettersesreveR srettel ni sdrowYou want every word spelled backwards but the sentence intact.
Reverse word orderwords in letters ReverseYou want the last word first and every word readable.
Reverse everythingsdrow ni srettel esreveRYou want one continuous end-to-start reversal.
Upside down lettersspɹ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 detach

Where an accented letter is stored as a base letter plus a combining mark, reversal separates the two and the mark attaches to a different letter. Precomposed accented characters reverse cleanly.

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

Related Text Tools

Browse all text tools →