#!/usr/bin/perl -w use strict; use warnings; my $xml = 'í'; print($xml,"\n"); $xml =~ s/\&\#(\d*);/chr($1)/gse; print($xml,"\n");