Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use Tk;
    ...
    $txt = $mw->Text(-height=>5)->pack;
    $txt->insert('end', $test_string);
    MainLoop;
    
  2. or download this
    $test_string = 'This is a sample Chinese character: ' . chr(25105);
    
  3. or download this
    use utf8;