NAME Data::Visitor::Encode - Encode/Decode Values In A Structure (DEPRECATED) SYNOPSIS # THIS MODULE IS NOW DEPRECATED. Use Data::Recursive::Encode instead use Data::Visitor::Encode; my $dev = Data::Visitor::Encode->new(); my %hash = (...); # assume data is in Perl native Unicode $dev->encode('euc-jp', \%hash); # now strings are in euc-jp $dev->decode('euc-jp', \%hash); # now strings are back in u