NAME
Lingua::KO::Hangul::JamoCompatMapping - provide a function that maps Hangul Jamo into Hangul Compatibility code
VERSION
version 0.002
SYNOPSIS
use Lingua::KO::Hangul::JamoCompatMapping qw/jamo_to_compat/;
# HANGUL CHOSEONG KIYEOK (\x{1100}) => HANGUL LETTER KIYEOK (\x{3131})
$letter = jamo_to_compat("\x{1100}");
# HANGUL JONGSEONG KIYEOK (\x{11A8}) => HANGUL LETTER KIYEOK (\x{3131})
$letter = jamo_to_compat("\x{11A8}");
DESCRIPTION
Function jamo_to_compat() maps "Hangul Jamo" to "Hangul Compatibility Jamo" and returns compatibility jamo code.
AUTHOR
Geunyoung Park <gypark@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Geunyoung Park.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.