All Unicode characters are 16 bits wide (well, not strictly true...), but have a large variety of encodings. In UTF-8, for instance, the ASCII characters are encoded exactly the same way, so newline is, er, \n. UTF-7 is just plain silly, and UTF-16 is 16-bits wide, so newline would be \0\n.

(Note that the first 256 characters of Unicode are the ISO-8859-1, character set, better known as Latin-1. The first 128 are ASCII)

There again, in NT, text files are plain 8-bit ASCII (with the top-bit set characters being some godawful M$ encoding), so \r\n should indeed do the trick, unless you really are using some form of Unicode editor & file format. (Perl was written for Unix, where newline is just \n, but NT considers newline to be \r\n. Actually, only notepad seems to think that these days...)

Andrew.


In reply to Re: newline for Unicode? by ahunter
in thread newline for Unicode? by linuser2

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.