Help for this page

Select Code to Download


  1. or download this
    [KEY]
    һ
    ...
    KeyStr=һحدؼ^
    KeyMap=һحدؼ^
    [DICT]
    
  2. or download this
    my %conv =  (
        'U\+003d'    =>    'key1',        
    );
    
  3. or download this
    while (<F>) {    
        push ( @raw, utf16($_));
    }
    
  4. or download this
    my @hexout;
    foreach $line ( @raw ) {
    ...
            # maintain a list of output hex values.
            push @hexout, $hvs;
    }
    
  5. or download this
    Unicode::String->stringify_as( 'utf16' );
    my $out16 = Unicode::String->new();
    $out16->hex ( join '', @hexout);
    print OUTFILE $out16;
    close F || die;
    
  6. or download this
    print OUTFILE chr hex foreach ( split /\s*/, $outhex );