Text: Reverse
Reverse the input string by character. Reversal operates on Unicode scalar
values (chars), not grapheme clusters — combining marks are not kept
attached to their base character.
Example
Input: "hello" → Output: "olleh"
Input: "héllo" → Output: "olléh"
Parameters
This function has no parameters.
Input
Stringrequired
Text to reverse.
Output
String
The reversed text.