class ActiveSupport::Multibyte::Chars

def reverse

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

Reverses all characters in the string.
def reverse
  chars(@wrapped_string.scan(/\X/).reverse.join)
end