Unix Timestamp Converter: 1609459200

Just another unix timestamp converter. Find and convert unix epoch time in different date/time formats in timezones. Easy, fast and free unix timestamp lookup. Calc unix timestamps. Search for unix time. Unixtime examples. Learn important timestamps.



Unix Timestamp Converter: 1609459200

2021-01-01 00:00:00 UTC

  • Day of Year: 0
  • Week of Year: 53
  • Month: January (31 Days)
  • Weekday: Friday (Day 5)
  • Leap Year: No

Local Time for 1609459200

What is this timestamp in your local timezone? Just choose a timezone from the dropdown list.

2021-01-01 00:00:00 UTC

Summertime / Daylight Saving Time (DST): No


Relative to 1609459200

Some important unix timestamps relative to 1609459200 (2021-01-01 00:00:00 UTC) with offsets in seconds. Dates, times and offsets are described from the UTC timezone.

Day Start 2021-01-01 1609459200 0 s
Tomorrow 2021-01-02 1609545600 86400 s
Yesterday 2020-12-31 1609372800 -86400 s
Last Monday 2020-12-28 1609113600 -345600 s
Next Monday 2021-01-04 1609718400 259200 s
Month Start 2021-01-01 1609459200 0 s
Next Month 2021-02-01 1612137600 2678400 s
Year Start 2021-01-01 1609459200 0 s
Next Year 2022-01-01 1640995200 31536000 s

Convert Timestamp Programming Languages

PHP
$dt = new Datetime('{{ $timestamp }}');
echo $dt->format('r');
MySQL
select from_unixtime(table.fieldname);

... if the timestamp is in table.fieldname. You can convert the timestamp direct when you enter the number and not the field name, for example: select from_unixtime(1609459200);

Javascript
let dt = new Date(1609459200 * 1000); // JS works with milliseconds
console.log(dt.toUTCString());
Python
from datetime import datetime
print(datetime.utcfromtimestamp(1609459200).strftime('%c'))
Java
java.util.Date dt = new java.util.Date((long) 1609459200 * 1000);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSXXX");
System.out.println(sdf.format(dt));
C#
DateTimeOffset dt = DateTimeOffset.FromUnixTimeSeconds(1609459200);
dt.ToString("F")
Convert a timestamp in Microsoft Excel
=((((A1+0)/60)/60)/24)+DATE(1970,1,1);

...if the timestamp is in field A1. The +0 is the timezone offset in seconds. Change this if you want the calc the unix timestamp for a different timezone (eg.: A1+3600).