Encode::RAD50 0.002 review

Download
by rbytes.net on

License: Perl Artistic License
File size: 5K
Developer: Thomas R. Wyant
0 stars award from rbytes.net

Encode::RAD50 is a Perl module that can convert to and from the Rad50 character set.

SYNOPSIS

use Encode;
use Encode::RAD50; # Sorry about this.
$rad50 = encode ('RAD50', 'FOO');
$ascii = decode ('rad50', pack 'n', 10215);
binmode STDOUT, ':encoding(rad50)'; # Perverse, but it works.
print 'A#C'; # Gives a warning, since '#' isn't valid.

Because this is not a standard encoding, you will need to explicitly

use Encode::RAD50;

Though of course the name of the module is case-sensitive, the name of the encoding (passed to encode (), decode (), or ":encoding()") is not case-sensitive.

Requirements:
Perl

Encode::RAD50 0.002 keywords