in reply to Re^2: print Unicode characters
in thread print Unicode characters

I'm not quite sure what you mean by "degree sign". I kept getting a "wide character in print" warning. However, I think that this is what you're after:
#!/usr/bin/perl use strict; use encoding 'utf8'; use charnames ':full'; print "\N{LATIN CAPITAL LETTER N WITH DOT ABOVE}\n";

Replies are listed 'Best First'.
Re^4: print Unicode characters
by graff (Chancellor) on Jun 15, 2010 at 01:55 UTC
    I kept getting a "wide character in print" warning.

    Add this to your script to get rid of the warning:

    binmode STDOUT, ":utf8";