in reply to unicode in perl
#!/usr/bin/perl use strict; use warnings; my $text = "\\alpha"; $text =~ s/\\alpha/\x{03B1}/g; binmode STDOUT, ':encoding(utf8)'; print "$text\n"; [download]