|  |  
 |   |   
 NAMEUnicode::Unihan - The Unihan Data Base 5.1.0 SYNOPSIS  use Unicode::Unihan;
  my $uh = Unicode::Unihan->new;
  print join("," => $uh->Mandarin("\x{5c0f}\x{98fc}\x{5f3e}")), "\n";
ABSTRACTThis module provides a user-friendly interface to the Unicode Unihan Database 5.1. With this module, the Unihan database is as easy as shown in the SYNOPSIS above. DESCRIPTIONThe first thing you do is make the database available. Just say use Unicode::Unihan; my $uh = Unicode::Unihan->new; That's all you have to say. After that, you can access the database via $uh->tag($string) where tag is the tag in the Unihan Database, without 'k' prefix. 
 FIELDS AND THEIR MEANINGSFor a complete list of tags, their meaning, and information on parsing the value field, see <http://www.unicode.org/reports/tr38/>. SEE ALSO
 AUTHOR
 COPYRIGHT AND LICENSEThis module is currently maintained by brian d foy ("bdfoy@cpan.org") for legacy applications. 
 
 
 |