This is a Mac charset problem. My terminal is UTF-8:

$ echo -n ‚Äô|recode ..macintosh | xxd 0000000: e280 99 ... $ echo `echo -n ‚Äô|recode ..macintosh` ’
This means that when I take the mangled characters from "Ainsi j’appelle" and convert them to the traditional Mac charset, the resulting byte sequence interpreted as UTF-8 is an apostrophe. So the reverse must be the case for your file: you are assuming an 8-bit Mac charset but the file is actually UTF-8. Either convert the files by hand using recode or iconv, or use Encode::Guess or similar to detect the encoding on the fly.


In reply to Re: Unusual output with french accented letters by mbethke
in thread Unusual output with french accented letters by JHG

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.