use strict; my %hash; $hash{'test1'}{'fixed name'} = 42; my $variable_name = 'test1'; print $hash{$variable_name}{'fixed name'}; print "\n";