NAME
Convert::Braille - Convert Between Braille Encodings.
SYNOPSIS
use Convert::Braille;
print brailleAscii_To_Unicode ( "HELLO" ), "\n";
print brailleDots_To_Ascii    ( "12515123123135" ), "\n";
REQUIRES
perl5.6.1 or later.
EXPORTS
- brailleAscii_To_Unicode( $arg )
 - 
Convert an ASCII ([A-Z0-9]) $arg into Unicode Braille codes. E.g.: HELLO => ⠓⠑⠇⠇⠕ - brailleUnicode_To_Ascii( $arg )
 - 
Convert a Unicode Braille $arg into an ASCII string. E.g.: ⠓⠑⠇⠇⠕ => HELLO - brailleUnicode_To_DotNumbers( $arg )
 - 
Convert a Unicode Braille $arg into a Braille "dot numbers". E.g.: ⠓⠑⠇⠇⠕ => 12515123123135 - brailleDotNumbers_To_Unicode( $arg )
 - 
Convert a Braille "dot numbers" $arg into Unicode Braille. E.g.: 12515123123135 => ⠓⠑⠇⠇⠕ - brailleAscii_To_DotNumbers( $arg )
 - 
Convert an ASCII ([A-Z0-9]) $arg into Braille "dot numbers". E.g.: HELLO => 12515123123135 - brailleDotNumbers_To_Ascii( $arg )
 - 
Convert a Braille "dot numbers" $arg into an ASCII string. E.g.: 12515123123135 => HELLO 
COPYRIGHT
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
BUGS
None presently known.
AUTHOR
Daniel Yacob, dyacob@cpan.org
LICENSE AND COPYRIGHT
Copyright (c) 2003-2025, Daniel Yacob <dyacob@cpan.org>. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
SEE ALSO
Convert::Braille::Ethiopic , Convert::Braille::English
Included with this package:
examples/demo.pl        examples/makeethiopic.pl
examples/ethiopic.pl    examples/english.pl