in reply to Problem with print chr()

or try
printf "Copyright %c 2004\n", 169;

Sweetblood

Replies are listed 'Best First'.
Re^2: Problem with print chr()
by ccarden (Monk) on Sep 17, 2004 at 18:17 UTC
    That seems to work only if there is a use encoding 'latin1'; line either before or after (!) the printf statement.

    Thanks, though.