a) The encoding of the script is not relevant to the encoding of the data manipulated by the process as long as you indicate to perl what the script encoding is if you use non-ascii literals in it. See: encoding

b) Don't worry about (or rely on an assumption about) what internal coding perl uses. http://http://perldoc.perl.org/perlunifaq.html#I-lost-track%3B-what-encoding-is-the-internal-format-really%3F

c) If you know what the encoding of the data you are reading is, use decode() on it, or binmode(:encoding(xxx)) on the filehandle. This will convert it into the internal encoding so you can do what have you, such as encode() it into some different encoding.

binmode Encode

d) If you don't know what the encoding of read data is, that's problematic. There isn't a definitive way to sort them out.


In reply to Re: A definitive way to handle encoding/decoding problems? by halfcountplus
in thread A definitive way to handle encoding/decoding problems? by DreamT

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.