in reply to Using Unicode in Tk
#!/usr/bin/perl use warnings; use strict; use utf8; use Tk; #$Tk::encodeFallback=1; my $main = tkinit(); my $text = 'contestant has an Š' ; $main->Label(-text =>$text )->pack(); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using Unicode in Tk
by mpolo (Chaplain) on Oct 21, 2006 at 13:58 UTC | |
by vkon (Curate) on Oct 22, 2006 at 21:26 UTC |