class Mail::Multibyte::Chars

def capitalize

Mail::Multibyte.mb_chars('über').capitalize.to_s # => "Über"
Example:

Converts the first character to uppercase and the remainder to lowercase.
def capitalize
  (slice(0) || chars('')).upcase + (slice(1..-1) || chars('')).downcase
end