Help for this page

Select Code to Download


  1. or download this
    use Win32::Clipboard;
    use utf8;
    ...
    tie my $clipboard, 'Win32::Clipboard';
    my $text = "אושרי"; # please note that I
    + wrote here a unicode string (Hebrew chars), but this forum changed i
    +t automatically to these numbers (ASCII I guess)
    $clipboard = $text;
    
  2. or download this
    utf8::decode($text);
    utf8::encode($text);