Help for this page
my $is_ascii = $string !~ /[^\x00-\x7F]/;
my $is_ascii = $string =~ /^[\x00-\x7F]*\z/;