so even if you do the reverse to get where you got, ti still wouldn't come out right?

i.e.

alias enc { return $chr($calc(($asc($1) * 2) + 3)) }
$enc(a) = Å
alias dec { return $chr($calc(($asc($1) - 3) / 2)) }
$dec(Å) = a


-KingTomato