Lingua::EL::Unicode - Convert 8-bit Greek codes into Unicode, and vice versa. |
Lingua::EL::Unicode - Convert 8-bit Greek codes into Unicode, and vice versa.
use Lingua::EL::Unicode;
my $el = new Lingua::EL::Unicode;
$el->to_utf8($greek_text, 'win'); # Windows-1253 to UTF-8 $el->to_utf16($greek_text, 'win'); # Windows-1253 to UTF-16 $el->to_utf8($greek_text, 'iso'); # ISO-8859-7 to UTF-8 $el->to_utf16($greek_text, 'iso'); # ISO-8859-7 to UTF-16 $el->to_win($unicode_text', utf8'); # UTF-8 to Windows-1253 $el->to_win($unicode_text', utf16'); # NOT YET IMPLEMENTED $el->to_iso($unicode_text', utf8'); # NOT YET IMPLEMENTED $el->to_iso($unicode_text', utf16'); # NOT YET IMPLEMENTED
Lingua::EL::Unicode privides the methods that convert traditional 8-bit Greek codes (Windows-1253/ISO-8859-7) into Unicode (UTF-8/UTF-16), and vice versa.
Some methods that convert unicode into 8-bit Greek codes are not yet implemented.
This module requires Perl 5.6 or later.
new()
Tsutomu Kuroda <tkrd@mail.com>
Copyright (c) 2002 Tsutomu Kuroda <tkrd@mail.com> All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Lingua::EL::Unicode - Convert 8-bit Greek codes into Unicode, and vice versa. |