use strict; use warnings; use base q(Factory); my $m = main->new; my $r = $m->selectall_arrayref(qq( select character_name, hex(codepoint) from unicodedata where codepoint between ? and ? ), 0x20, 0x7E); $m->dd($r); # Dump