Help for this page

Select Code to Download


  1. or download this
    od -x x.data
    0000000 8181 8282 8383 000a
    
  2. or download this
    use strict;
    use warnings;
    ...
    open ($fh, "<:utf8", "x.data");
    my $img = '';
    while (<$fh>) {$img .= $_;}