unknown character showing for me.

Where is it showing that (what program)?

For example cmd.exe shows the output of

perl -Mopen=:std,utf8 -e" print $_, ' ',chr($_), ' ' for 931 .. 935"
as

931 Σ 932 Τ 933 Υ 934 Φ 935 Χ

But notepad will gladly show Sigma/Tau/Upsilon/Phi/Chi:

931 Σ 932 Τ 933 Υ 934 Φ 935 Χ

In both cases the bytes are the same

$ perl -Mopen=:std,utf8 -e" print $_, ' ',chr($_), ' ' for 931 .. 935" + |hexdump 00000000: 39 33 31 20 CE A3 20 39 - 33 32 20 CE A4 20 39 33 |931 93 +2 93| 00000010: 33 20 CE A5 20 39 33 34 - 20 CE A6 20 39 33 35 20 |3 934 + 935 | 00000020: CE A7 20 - | | 00000023;

In reply to Re: How read utf8 charachter from AddTextfield() in Win32::Gui by Anonymous Monk
in thread How read utf8 charachter from AddTextfield() in Win32::Gui by mohamad

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.