timestamp -1304294300 means:
- In your local time zone:
- UTC: Sunday 2nd September 1928 12:01:40 AM
We have some code-examples for you:
| PHP | date('d.m.Y H:i:s', -1304294300); |
| MySQL | select from_unixtime(-1304294300); |
| Java | new SimpleDateFormat("MM/dd/yyyy HH:mm:ss").format(new Date(-1304294300 * 1000L)) |
| C++ | time_t epch = -1304294300; (time.h) |
| C# | String.Format("{0:d/M/yyyy HH:mm:ss}", new System.DateTime(1970, 1, 1, 0, 0, 0, 0) |
| JavaScript | new Date(-1304294300*1000).toString() |