I'd say, Because Perl's print prints that character and more and less do a conversion before/during printing; so the user can "see" (recognize) the special characters...

update:

You could do a conversion of that characters to a visible character/string before you let Perl print it...

Try to redirect the perl's output into a file and check that file with less or more... You should see your ^A again...

update2:

My less on my linux box knows an option -r which disables the behaviour, that \x01 is printed as ^A...

...
   -r or --raw-control-chars
      Causes "raw" control characters to be displayed.  The default is
      to display control characters using the caret notation; for example,
      a control-A (octal 001) is displayed as "^A".  Warning: when the -r
      option is used, less cannot keep track of the actual appearance of
      the screen (since this depends on how the screen responds to each
      type of control character).  Thus, various display problems may result,
      such as long lines being split in the wrong place.
...

In reply to Re^3: how to output special characters? by linuxer
in thread how to output special characters? by perlfan99

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.