class Mail::Multibyte::Chars

def reverse

'Café'.mb_chars.reverse.to_s # => 'éfaC'
Example:

Reverses all characters in the string.
def reverse
  chars(Unicode.g_unpack(@wrapped_string).reverse.flatten.pack('U*'))
end