Text Reverser

Reverse text character by character, reverse the order of words, or reverse the order of lines.

Copied

Last updated

Reversed text will appear here.
Copied

About this tool

"Reverse characters" reverses by Unicode code point using a grapheme-aware split, so multi-byte characters like emoji and accented letters come out intact instead of corrupted — a plain string.split('') reversal breaks on those. "Reverse word order" keeps each word spelled normally but flips their order in the sentence; "Reverse line order" does the same for whole lines, useful for flipping a chronological list end-to-end.

Nothing you type here is sent to a server — the entire tool runs as JavaScript in your browser tab.