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