- or download this
$ perl -le " print chr hex q/C0/ " | od -tx1
0000000 c0 0d 0a
0000003
- or download this
$ perl -le " binmode STDOUT , q/:utf8/; print chr hex q/C0/ " | od -tx
+1
0000000 c3 80 0d 0a
0000004
- or download this
$ perl -MEncode -le " print decode(q/utf8/, chr hex q/C0/ )" | od -tx1
Wide character in print at -e line 1.
0000000 ef bf bd 0d 0a
0000005
- or download this
$ perl -le " print chr hex q/C0/ " |od -tx1
0000000 c0 0d 0a
0000003
...
Wide character in print at -e line 1.
0000000 c4 80 0d 0a
0000004
- or download this
$ perl -le " use encoding q/utf8/; print chr 192 " |od -tx1
0000000 c3 80 0a
0000003