Java Parse Unix Timestamp

long unixTime = 1577094336;
Instant instant = Instant.ofEpochSecond(unixTime);
// 2019-12-23T09:45:36Z
Blue-eyed Boar