
# each utf-8 character is 3 bytes long
puts "スパムハンク" =~ /ム(.)/u # should be 6
puts $1.length # should be 3

