Reverse Text
Enter text and reverse it character by character. We split the string into characters, reverse the array, and join. Unicode-safe with Array.from.
Reverse
Enter text and click Reverse.
How it works
We use Array.from(str) to support Unicode (e.g. emoji), reverse the array, and join. Optionally reverse word order instead of characters.
When to use it
Use for puzzles, testing, or creative writing.
Frequently asked questions
- Does it work with emoji? Yes. We use Array.from so multi-code-point characters stay intact.