The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use warnings;
use strict;
use utf8;
use Lingua::JA::Moji ':all';
use Test::More;

my $circled = 'γŠ„';
my $expect = 'δΊ”';
my $output = circled2kanji ($circled);
is ($output, $expect);
my $round_trip = kanji2circled ($output);
is ($round_trip, $circled);

my $bracketed = '㈱';
my $expect2 = 'ζ ͺ';
my $output2 = bracketed2kanji ($bracketed);
is ($output2, $expect2);
my $round_trip2 = kanji2bracketed ($output2);
is ($round_trip2, $bracketed);

my $accept = 'πŸ‰‘';
my $expect3 = '可';
my $output3 = circled2kanji ($accept);
is ($output3, $expect3);
my $round_trip3 = kanji2circled ($output3);
is ($round_trip3, $accept);

done_testing ();

exit;