in reply to Re^4: german Alphabet
in thread german Alphabet

I tried to switch the encoding to us-ascii using a command similar to what you used but fail to find the correct syntax:
$ iconv -f UTF-8 -t us-ascii 1.pl -o 1.us-ascii.pl iconv: illegal input sequence at position 72 $

I finally realized what that was when I took a look inside the unexpected partial file that resulted from this command: 1.us-ascii.pl:

$ cat 1.ascii.pl #!/usr/bin/perl -w use 5.011; #use utf8; use Devel::Peek; my $string = 'G$

So, position 72 was where the first umlaut occurred, and now I at least understand the error.