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

Thanks for the inputs and suggest me if I'm going in right way...

#!/usr/bin/perl use strict; use charnames ':full'; print "\N{LATIN CAPITAL LETTER N}", "\N{DEGREE SIGN}\n";

Replies are listed 'Best First'.
Re^3: print Unicode characters
by Khen1950fx (Canon) on Jun 14, 2010 at 10:30 UTC
    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";
      I kept getting a "wide character in print" warning.

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

      binmode STDOUT, ":utf8";