in reply to Convert Entities

Besides HTML::Entities, following gives decimal entitites (easy to modify to generate hex version if desired) ...

$entitified = join '' , map { sprintf '&#%d;' , ord $_ } split '' , $raw_string ;

(update: slight style changes.)