##
ä ä, ÄSubstantiv, Neutrum, das Ä ɛː das ä; Genitiv: des ä (umgangssprachlich: -s), ä (umgangssprachlich: -s)
####
use Encode;
use utf8;
binmode STDOUT, ':utf8';
print "Content-Type:text/html; charset=utf-8\n";
print "Content-Language: utf8;\n\n";
my $ucode = qq|\xc3\xa4 \xc3\xa4, \xc3\x84Substantiv, Neutrum, das \xc3\x84 \xc9\x9b\xcb\x90 das \xc3\xa4; Genitiv: des \xc3\xa4 (umgangssprachlich: -s), \xc3\xa4 (umgangssprachlich: -s) |;
my $newcode = decode('utf8', $ucode);
print "$newcode
\n";