I think what you’ve got there is the number of seconds since the Unix epoch (which is January 1 1970). To convert it to the current date in JavaScript you would do:
new Date(1545130353 * 1000); // Since Date takes milliseconds we multiply by 1000.
``
You can then use the JulianDate.fromDate to create a date object in Cesium from that: