Thread unicode utf8 (10 answers)
Opened by Gast at 2008-11-10 11:40

Gast Gast
 2008-11-13 12:22
#116215 #116215
Wenn ich Textdateien in utf8 speichere, kann ich meine Perlskripte so anfangen?

Code (perl): (dl )
1
2
3
4
5
6
7
#!/usr/bin/perl
use warnings;
use strict;

use utf8;
use open ':encoding(UTF-8)';
binmode STDOUT, ':encoding(UTF-8)';

View full thread unicode utf8