- or download this
$stream =~ s/0/0000 /g;
$stream =~ s/1/1111 /g;
- or download this
$stream =~ s/(.)/$1$1$1$1 /g; # could be rewritten using /e and x 4
- or download this
$stream =~ tr/1/F/;
print "0x$stream\n";
- or download this
0x0000
0x000F
0x00F0
...
0xFF0F
0xFFF0
0xFFFF