Text Tools
Reverse Text
Reverse text in three ways: mirror every character, swap word order within each line, or flip the order of the lines themselves. Handy for puzzles, right-to-left language experiments, formatting tricks and testing edge cases.
Your input is processed locally in your browser. It is not uploaded to Dueneo.
Loading Reverse Text…
How to use
- 1
Paste your text
Drop a sentence, paragraph or list into the input box.
- 2
Choose a mode
Reverse characters to mirror every glyph, reverse words to swap word order within each line, or reverse lines to flip the order of whole lines.
- 3
Reverse
Click Reverse. The result appears in the output box and stays until you reverse again or reset.
- 4
Copy or save
Use Copy to put the result on your clipboard, or Save to download reversed.txt.
Common use cases
- Create a palindrome-style puzzle or social media post.
- Reverse the order of a numbered list so the latest item appears first.
- Inspect how a string reads right-to-left for Arabic or Hebrew testing.
- Mirror a paragraph for fun in messages or screenshots.
Limitations
- Character reversal uses
Array.fromso surrogate pairs (emoji) stay together, but combining marks may end up on the wrong base character. - Word reversal joins words with a single space; original spacing between words is not preserved.
- Line reversal treats
\\r\\nand\\nas line separators and emits\\nin the output. - Inputs larger than 1 MB are flagged but still processed on the main thread.