The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -T

use Test::More tests => 3;

use Lingua::Han::Utils qw/Unihan_value/;

my $word = 'ÖÐ';

is(Unihan_value($word), '4E2D', "it's not under utf8");

$word = '†´';

is(Unihan_value($word), '5586', "for gbk Encode::Guess");

$word = "Ìì½òɽÎ÷";
is(Unihan_value($word), '59296D255C71897F', "for multi words");