in reply to Re: LWP::Simple // Special Character problems.
in thread LWP::Simple // Special Character problems.

binmode STDOUT, ":utf8"; print $webObject;

would encode to UTF-8 content that appears to already be UTF-8 encoded. The idea is to convert *from* UTF-8, but you are converting *to* UTF-8. My reply shows some implementations.