It does show the timestamp (with nanoseconds precision) but _in hex_ ; it's the field after `crtime:`, e.g. in your output `0x55b65ebc:970fe7cc`. The part after the colon is the nanoseconds.
This article gives more details and explains how to calculate the timestamp/nanoseconds. So, e.g. to convert the hex values to a timestamp _a la_ `stat` you could run:
date -d @$(printf %d 0x55b65ebc).$(( $(printf %d 0x970fe7cc) / 4 )) +'%F %T.%N %z'
2015-07-27 19:39:24.633600499 +0300