RunTheTests

Reverse Text

Reverse text by character, word or line.

System verdict

RESULT

Done

Characters reversed (Unicode-aware).

Diagnostic telemetry
Result
dlrow olleH
Length
11 chars

What this cannot tell you

  • A pure text operation in your browser. Nothing is uploaded.
  • Character reversal is Unicode-aware, so emoji and accented letters survive; some complex scripts with combining sequences may still not reverse perfectly.

How this calculation works

Pick what to reverse โ€” the characters, the word order, or the line order โ€” and the tool does it locally. Character reversal splits on Unicode code points rather than raw bytes, so multi-byte characters like emoji are not corrupted.

What the results mean

Characters
Every character in reverse order. "abc" becomes "cba".
Words
Word order reversed, spacing kept. Useful for certain text puzzles and layout tests.

Frequently asked questions

Why do some tools break emoji when reversing?

Because they reverse the underlying UTF-16 code units rather than the actual characters, splitting a multi-unit emoji in half and producing garbage. This tool reverses by code point, so "a๐Ÿ”’b" comes back as "b๐Ÿ”’a" intact.

More in Text