my $some_scalar = 'abc'; my $ref = \$some_scalar; print $ref, "\n"; # SCALAR(0x225e9c) print ${$ref}, "\n"; # abc