Java tutorial
import java.time.Instant; public class Main { public static void main(String[] args) { Instant firstInstant = Instant.ofEpochSecond(1234881180); System.out.println(firstInstant); } }