in reply to Convert Octet String DateAndTime to printable string

The best thing you can do for looking at an arbitrary data structure is use Data::Dump or Data::Dumper

use Data::Dump qw(dump); warn "Dump " . dump( $j );

This should do what you want to do.