timestamp -14159040 means:
- In your local time zone:
- UTC: Monday 21st July 1969 02:56:00 AM
We have some code-examples for you:
| PHP | date('d.m.Y H:i:s', -14159040); |
| MySQL | select from_unixtime(-14159040); |
| Java | new SimpleDateFormat("MM/dd/yyyy HH:mm:ss").format(new Date(-14159040 * 1000L)) |
| C++ | time_t epch = -14159040; (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(-14159040*1000).toString() |