> I have never used Tk.
> If you can post your sample code, I can try see how to make
> it output Hebrew.
> Try and keep is small and simple.
OK. How about:
use Tk;
$string = "ùìåí";
my $top = MainWindow->new();
$top->Label(
-text => $string,
)->pack;
MainLoop;