http://www.perlmonks.org?node_id=1019291


in reply to Re: accented characters are garbled
in thread accented characters are garbled

Yes, it was the terminal setting. Changing vt100 to xterm shows characters fine. Now, how do I replace accented characters with ascii? E.g. ó to o. I tried the following, but it did not work:
$city = "Sprîngfíèld"; use utf8; utf8::upgrade($city); utf8::encode($city); print $city;