Reverse Text
Enter text and reverse it character by character. Optionally reverse word order. Runs in browser.
Reverse Text
How it works
We split the string into characters (or words), reverse the array, and join. Unicode-safe with Array.from or split('').
When to use it
Use for puzzles, testing, or creative writing.
Frequently asked questions
Does it work with emoji?
Yes if we use Unicode-aware splitting (e.g. Array.from).