Upside down text generator
Upside-down text is a playful effect that makes a sentence read as though the page
has been rotated 180 degrees — hello becomes oๅๅǝɥ. It is popular for social
media bios, usernames, chat messages and comments because it stands out without
needing images. This generator produces it instantly from any text you type, and
the result is plain Unicode you can copy and paste anywhere.
How it works
The tool relies on the fact that Unicode contains characters that happen to look
like flipped Latin letters, digits and punctuation — for example a → ɐ,
e → ǝ, r → ɹ, t → ʇ and ? to its inverted form. Each character in your
input is swapped for its mapped look-alike, then the whole string is reversed,
because rotating text 180 degrees also reverses the reading order. Characters with
no good flipped equivalent are left as they are.
Example
Typing Hello World! maps each letter to its flipped form and reverses the order,
producing roughly ¡plɹoM ollǝH. Notice the exclamation mark moves to the front
and appears inverted, while letters such as o and l look much the same either
way.
| Input | Flipped look-alike |
|---|---|
| a | ɐ |
| e | ǝ |
| h | ɥ |
| r | ɹ |
| ? | ¿ |
Everything runs in your browser with JavaScript — nothing you type is uploaded.