Acme-Text-Viceversa
view release on metacpan or search on metacpan
lib/Acme/Text/Viceversa.pm view on Meta::CPAN
package Acme::Text::Viceversa;
use 5.008001;
use strict;
use warnings;
use Carp;
use utf8;
our $VERSION = "0.07";
sub new {
my $class = shift;
return bless {}, $class;
}
my %ascii = (
q' ' => ' ', # same!
q'!' => '¡',
q'"' => 'â',
q'#' => '#', # same!
q'$' => '$', # same!
q'%' => '%', # same!
q'&' => 'â
',
q|'| => '͵',
q|(| => ')',
q|)| => '(',
q|*| => '*', # same!
q|+| => '+', # same!
q|,| => 'â',
q|-| => '-', # same!
q|.| => 'Ë',
q|/| => '/', # same!
q|0| => '0', # same!
q|1| => 'â',
q|2| => 'á',
q|3| => 'ε',
q|4| => 'ââ',
q|5| => 'á',
q|6| => '9',
q|7| => 'L',
q|8| => '8', # same!
q|9| => '6',
q|:| => ':', # same!
q|;| => 'â
Ì',
q|<| => '>',
q|=| => '=', # same!
q|>| => '<',
q|?| => '¿',
q|@| => '@', # Can't be rotate
q|A| => 'â',
q|B| => 'áº',
q|C| => 'â',
q|D| => 'p',
q|E| => 'Æ',
q|F| => 'â²',
q|G| => 'â
',
q|H| => 'H', # same!
q|I| => 'I', # same!
q|J| => 'á',
q|K| => '丬',
q|L| => 'á£',
q|M| => 'W',
q|N| => 'N', # same!
q|O| => 'O', # same!
q|P| => 'Ô',
q|Q| => 'Î',
q|R| => 'È¢',
q|S| => 'S', # same!
q|T| => 'â¥',
q|U| => 'á',
( run in 1.893 second using v1.01-cache-2.11-cpan-39bf76dae61 )