in reply to Re^2: HTML::Treebuilder Special characters
in thread HTML::Treebuilder Special characters

This function helped me to solve the issue
sub encode_entities_decimal { my $text = shift; $text =~ s{([^\0-\x7f])}{sprintf("&#%d;",ord($1))}ge; $text; }