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

NAME

Lingua::JA::KanjiTable - Kanji properties

SYNOPSIS

  use Lingua::JA::KanjiTable;
  use utf8;

  '亜' =~ /^\p{InJoyoKanji}$/   ? 1 : 0; # => 1
  '亞' =~ /^\p{InJoyoKanji}$/   ? 1 : 0; # => 0
  '叱' =~ /^\p{InJouyouKanji}$/ ? 1 : 0; # => 0
  '𠮟' =~ /^\p{InJouyouKanji}$/ ? 1 : 0; # => 1

DESCRIPTION

Lingua::JA::KanjiTable provides user-defined Unicode properties relating to Kanji.

EXPORTS

InJoyoKanji - 常用漢字表(平成22年11月30日内閣告示)
InJouyouKanji - ditto

SEE ALSO

Jōyō kanji - Wikipedia, the free encyclopedia

常用漢字表(平成22年11月30日内閣告示)

LICENSE

Copyright (C) pawa.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

pawa <pawa@pawafuru.com>