swamyvenkat2011 has asked for the wisdom of the Perl Monks concerning the following question:

Hi, I want to print the swedish strings using perl. for example $str="stå öppen"; when I am printing this string I am getting below result. Result= st├Ñ ├╢ppen Kindly let me know how to print swedish string as it is.

Replies are listed 'Best First'.
Re: How to print Swedish Strings in perl.
by Anonymous Monk on Apr 12, 2013 at 04:12 UTC
Re: How to print Swedish Strings in perl.
by Discipulus (Canon) on Apr 12, 2013 at 07:37 UTC
Re: How to print Swedish Strings in perl.
by CountOrlok (Friar) on Apr 12, 2013 at 04:12 UTC
    When printing to what? I had no problem printing to stdout:
    my $str="stå öppen"; print "$str\n";
Re: How to print Swedish Strings in perl.
by reisinge (Hermit) on Apr 12, 2013 at 10:42 UTC