Text
Text Reverser
Input
Reverse by characters or by word order.
Input text is not overwritten; output is shown separately.
Output
Frequently Asked Questions
What exactly gets reversed?
The tool reverses the character order of the entire input string (or each line individually in per-line mode). 'Hello' becomes 'olleH'. Multi-byte Unicode characters (emoji, CJK, accented letters) are handled correctly as single code points, not as raw bytes.
What is per-line vs. whole-text reversal?
Whole-text mode reverses all characters including newlines — the last character of the last line becomes the first character. Per-line mode reverses each line independently while keeping line order intact. Most use cases want per-line mode.
Is there a practical application for text reversal?
Simple obfuscation, palindrome creation, some encoding challenges, cultural scripts that read right-to-left, and academic exercises. RTL (right-to-left) language support in software uses proper Unicode bidirectional algorithms — not simple reversal.