Please ignore - I believe the issue is in the file - apologies if anyone wasted time looking at this

I want to read a file and display it in a Tk-based editor for which I have inherited the support role. It successfully loads many files containing utf8 characters. However, when I attempt to read the file below, it fails to interpret the utf8 characters correctly. The file contains the ascii characters "ABC", a space, then two Cyrillic characters: U+0440 (Cyrillic Small Letter Er) and U+0435 (Cyrillic Small Letter Ie).

I have extracted what I believe to be the relevant bit of code, and added a printf to output the characters in hex. I would expect the following output:

41 42 43 20 440 435 a

Or possibly (looking at the utf-8 encoding for those two characters):

41 42 43 20 d1 80 d0 b5 a

I actually get the following which displays as "ABC ре" in the editor:

41 42 43 20 e0 a5 a

Any help would be gratefully received.

Code

#!/usr/bin/perl if ( open my $fh, '<', "321t.txt" ) { my $line = <$fh>; utf8::decode($line); for (0..length($line)-1) { printf("%x\n",ord(substr($line,$_,1))); } }

File

ABC &#1088;&#1077;

In reply to Ignore - Failure to correctly interpret utf-8 characters by windymilla

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.