in reply to Re^5: Default encoding rules leave me puzzled...
in thread Default encoding rules leave me puzzled...

produces a sequence of octets ENCODED as Latin-1 for code points 0 - 255

It gives the same result, yes, but only by virtue of Unicode code points being rather similar to iso-latin-1, not because print does any encoding.

print does this:

- If any of the elements of the string is larger than 255, - Warn "wide character". - Encode the string using utf8. - For each element of the string, - Print that number as a byte.

The operator plus expects numbers, just like print, right?

Two individual numbers, yes. print takes two strings of them. The bitwise operators accept either.

$ perl -E'say "ABC" | " "' abc