Help for this page

Select Code to Download


  1. or download this
    my $char = "\x{30DE}\x{30A4}\x{30AF}";
    binmode STDOUT, ":utf8";
    ...
    sub out {
       print  "$char";
    }
    
  2. or download this
    use threads;
    my $char = "\x{30DE}\x{30A4}\x{30AF}";
    ...
    sub foo {
       print  "$char";
    }