use XML::Simple; my $xs = new XML::Simple(); my $ref = $xs->XMLin("Hello world!"); my $xml = $xs->XMLout($ref); print $xml; exit;