~ I have found numerous hits relating to the execution of Windows commands using the Perl `command` (back tick) but none work.

No example on what you meant by "windows commands" were given, so how do one know what you are referring to?

~ Has anyone successfully executed a Windows command issued from within PERL where the Windows parameter data contains UTF8

First of, there is nothing like PERL as Perl is not an acronym see What's the difference between "perl" and "Perl"?

Secondly, however to display UTF-8 output to command shell in Win7 the following work for me:

#!/usr/bin/perl use warnings; use strict; use utf8; my $null = `chcp 65001`; ## changes the Active Page Code to 65001 binmode STDOUT, ":encoding(UTF-8)"; print "\x{03B1}\x{03C9}\n";
Note: The reason for the use of backtick here instead of function like system is because, one doesn't want the string Active Page Code: 65001 displayed on the CLI. So, variable "$null" was not used, though the return string were saved in that variable.
Hope this help atleast.

If you tell me, I'll forget.
If you show me, I'll remember.
if you involve me, I'll understand.
--- Author unknown to me

In reply to Re: Executing Windows commands using backtick by 2teez
in thread Executing Windows commands using backtick by marincdyer

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.