in reply to Accessing HASH array values !!

Then there is the slightly less readable:
print ${%$VAR1}{'href'};
or the long-winded
my %hash = %$VAR1; print $hash{'href'};