Reverse Text Generator — Upside Down Text
Separate flip and reverse toggles. See what each step does.
Flipping needs both steps: each letter is swapped for a Unicode look-alike of its upside-down form, then the string is reversed so it reads correctly when rotated. Turn off one toggle to see what each does. Most digits and some punctuation have no flipped form, so they are left unchanged.
Reversing text and flipping it are two different operations, and most tools do both without telling you. This one exposes them separately, because doing only one is the commonest reason a hand-made attempt comes out wrong.
The two steps
**Flip each character.** Every letter is swapped for a Unicode look-alike of its upside-down form — a becomes ɐ, e becomes ǝ, r becomes ɹ.
**Reverse the string.** After flipping, the letters are still in their original order, but a physically rotated page reads right to left, so the string has to be reversed to match.
Do only the first and you get ɥǝllo — upside down but backwards. Do only the second and you get olleh — right way up but mirrored. Both toggles produce the effect people actually want.
Where the flipped characters come from
There is no upside-down alphabet in Unicode, because nobody has ever needed one. Generators borrow look-alikes from other scripts: ɐ and ǝ are turned letters from the phonetic alphabet, ן is Hebrew, ʞ is phonetic.
Most digits have no turned form and stay upright. ? and ! have proper inverted forms in ¿ and ¡; brackets swap with their opposites; most other punctuation stays as it is. That is why flipped text always contains a few characters that look wrong — a limitation of the source material, not the tool.
Where it works
Anywhere accepting Unicode: bios, comments, chat apps, display names, forum posts. It is a common way to make a display name stand out, because the eye stops on it.
Keep it short. A flipped phrase is a novelty; a flipped paragraph is genuinely hard to read. Screen readers pronounce the substituted characters by their real names, so it is a poor choice for anything carrying information.
For other effects see glitch text, fancy text, and text symbols.
How do I read flipped text someone sent me?
Paste it back into this tool with both toggles on. Flipping and reversing twice returns the original, because both operations are their own inverse. That is quicker than working it out by eye, particularly for anything longer than a few words.
FAQ
How does upside down text work?
Each letter is swapped for a Unicode look-alike of its flipped form, and the string is reversed so it reads correctly when rotated.
Why do numbers not flip?
Unicode has no upside-down forms for most digits, so they are left unchanged.
Where can I paste flipped text?
Anywhere that accepts text — bios, comments, chats, usernames and forums.
Is flipped text readable?
In short phrases, yes, with effort. A whole paragraph is genuinely hard to read, so keep it brief.