Help for this page

Select Code to Download


  1. or download this
    LC_CTYPE="en_US.UTF-8" xterm &
    
  2. or download this
    LANG=
    LC_CTYPE=en_US.UTF-8
    
  3. or download this
    Encode::from_to($your_variable, "UTF-16", "UTF-8");
    print $your_variable, "\n";
    
  4. or download this
    use utf8;
    my $converted = Encode::decode("UTF-16", $your_variable);
    $converted =~ /some Japanese text/;