in reply to Base64 Decode issues
Locking at your example strings, I think you are wrong when you speak of "base64". The encoded characters in your strings are HTML::Entities and you can decode them like this:
C:\>perl -MHTML::Entities -pe "$_=decode_entities($_)" Georgia Georgia Toni Toni ^Z
In Section
Seekers of Perl Wisdom