Reverses text by characters, words or lines.
Reverse Text flips your input backwards by characters, words, or lines, all in your browser. It's handy when you need to mirror a string, invert the order of words in a sentence, or flip the order of lines in a list or log. Pick the unit you want to reverse and the result updates instantly.
No. Reverse Text runs entirely in your browser and nothing is uploaded. Your text never leaves your device.
Three: by characters (the whole string is reversed character by character), by words (the order of words is reversed while whitespace is preserved), and by lines (the order of lines, split on newlines, is reversed).
Yes. Word mode splits on whitespace and reverses both the words and the gaps, so the spacing between items is preserved in the flipped output.
Line mode splits the input on newline characters and reverses that order, so the last line becomes the first. It does not change the content within each line.
Character mode reverses by Unicode code points, so most emoji and accented characters stay intact rather than being split into broken byte sequences.