http://www.perlmonks.org?node_id=959094


in reply to Re: Hex String XOR
in thread Hex String XOR

I think this is good as far as it goes, but I would assume that the OP wants to XOR some humongous things that cannot be represented as simple Perl numeric scalar values? In this case, use hex() function.
my $x = "aabbcc"; my $y = "112233"; printf '%x', hex($x) ^ hex($y); #bb99ff
This causes integer overflow if $x and $y are "too big".