Current epoch time:1744073467
Convert human readable text to epoch timestamp
Epoch:1744073467
Epoch millis:1744073467552
ISO 8601:2025-04-08T00:51:07+00:00
RFC 2822:Tue, 08 Apr 2025 00:51:07 +00:00
Local:Tuesday, 08 April 2025 00:51:07.552 +00:00
GMT:Tuesday, 08 April 2025 00:51:07.552
What is an epoch?
An epoch is usually described as a specific point in time that marks the starting point, or origin, of an era. The epoch is used as reference point from which time is measured.
Wikipedia articleWhat is unix/epoch time?
Unix time, or epoch time, is a convention for describing a point in time. It is the number of seconds that have elapsed since the Unix epoch, that is the time 00:00:00 UTC on 1 January 1970, minus leap seconds.
Wikipedia articleThe Year 2038 problem
In the year 2038, at 03:14:07 UTC, on the 19th of January, the 32 bit signed integer implementations of the Unix/Epoch timestamp will overflow.
Wikipedia articleHow to get the current epoch time in ...
C++
double now = std::chrono::duration_cast<std::chrono::seconds>(std::chrono::system_clock::now().time_since_epoch()).count();
C#
DateTimeOffset.Now.ToUnixTimeSeconds();
TimeSpan t = DateTime.UtcNow - new DateTime(1970, 1, 1);
int secondsSinceEpoch = (int)t.TotalSeconds;
Java
Instant.now().toEpochMilli();
Instant.now().getEpochSecond();
GO
time.Now().Unix()
Rust
SystemTime::now().duration_since(SystemTime::UNIX_EPOCH)