My guess is that you’ve told (Perl ...) that the text consists of utf-8, and that you are (or, it is) transferring the data in about-4096 byte chunks, and that a UTF-8 character sequence is being “cut in half” across that boundary.   Well, it seems to me that if you said that the data was UTF-8, (Perl) is going to presume that every chunk is that way, and that every chunk is complete (which it is not).   Perl therefore might try to “fix” the tail of one chunk, and/or it will be confused by the start of the next one.

So, I suggest that you tell (Perl) that the data-stream is binary, so that (Perl) won’t attempt to do anything to what it sees, until such time as you know that you have received and have concatenated-together the entire stream of data, chunk by chunk.   This, and only this, ought to be a proper utf-8 stream ... which you can and should verify.

I put (Perl) in quotes since several different software agents could make this sort of mistake.


In reply to Re: Problem with utf8 after nearly 4096 bytes by Anonymous Monk
in thread Problem with utf8 after nearly 4096 bytes by gvieira

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.