The formula to make the modification is:
1652335737 + Informat( "01/01/1970", "mm/dd/yyyy" ) + In Hours( 8 )
The addition of the 8 hours in the calculation, is that apparently the start time for the 01/01/1970 is 08:00:00
This JSL displays the new calculated value from the formula
Show( Format( 1652335737 + Informat( "01/01/1970", "mm/dd/yyyy" ) + In Hours( 8 ), "yyyy-mm-ddThh:mm:ss" ) );
Format(1652335737 + Informat("01/01/1970", "mm/dd/yyyy") + In Hours(8), "yyyy-mm-ddThh:mm:ss") = "2022-05-12T14:08:57";
Jim