in reply to LWP::UserAgent; unable to copy extended ASCII
What you see is the Unicode replacement character that is printed whenever the target cannot accept the character. You should maybe also see some warning about "wide chars" from Perl.
Did you tell Perl that you want to output Unicode to STDOUT?
binmode STDOUT, ':encoding(UTF-8)';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: LWP::UserAgent; unable to copy extended ASCII
by haj (Vicar) on Jun 06, 2022 at 11:31 UTC | |
|
Re^2: LWP::UserAgent; unable to copy extended ASCII
by wmfs (Acolyte) on Jun 06, 2022 at 16:08 UTC |