my %hash = ( 'hi' => { 'hello' => 'all' }, 'bye' => { 'later' => 'gone' }, ); print $hash{'hi'}{'hello'}; # prints "all"