in reply to How to access contents of a reference to a hash.

Look at each and keys. If you just want to look at the content, Data::Dumper is a fine choice.
use Data::Dumper; print Dumper($hashref);
Boris