in reply to Re: Parse a special symbol
in thread Parse a special symbol

basically its just a variable

my $rest = "l'événement";

I tried to print that variable and what i get is a big mess

Replies are listed 'Best First'.
Re^3: Parse a special symbol
by Corion (Patriarch) on Jun 07, 2013 at 08:54 UTC
Re^3: Parse a special symbol
by Anonymous Monk on Jun 07, 2013 at 14:49 UTC
    1. Set your text editor to save things as utf-8 (if not already set so)
    2. use utf8;
    3. set your output encoding correctly: binmode(STDOUT, ":encoding(utf-8)");
    The rest depends on your terminal.