copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
Epoch Converter - Unix Timestamp Converter Easy epoch Unix timestamp converter for computer programmers Includes epoch explanation and conversion syntax in various programming languages
Time zone list Epoch to time zone converter To convert from normal standard time to daylight saving time add 1 hour ( or +3600 seconds ) For example: Eastern Standard Time = GMT-5, add 1 hour: Eastern Daylight Time = GMT-4
Unix Epoch Clock Epoch Converter Unix Epoch Clock Monday December 8 2025 05: 10: 37 GMT 1765170637 Hex: 69365dcd In milliseconds: 1765170637777 Back to the homepage (Epoch Unix Time converter) This clock is based on the time settings of your computer Refresh to update the date
Convertir Epoch - Tiempo Unix ¿Qué es epoch? El tiempo Epoch es la hora actual medida en número de segundos desde el Epoch Unix Epoch 0 es enero 1 1970 00:00:00 GMT (ISO 8601: 1970-01-01T00:00:00Z) No se usan segundos bisiestos en el tiempo Unix
Epoch Converter Functions The example above gives the following output (with epoch date 1): Thu, 01 Jan 1970 00:00:01 GMT 12 31 1969, 4:00:01 PM You can also use getFullYear, getMonth, getDay, etc See documentation below Convert human-readable dates to epoch: var myDate = new Date("July 1, 1978 02:30:00"); Your timezone! var myEpoch = myDate getTime() 1000 0;
PHP Epoch Converter and Date Time Routines echo gmdate('r', $epoch); returns GMT UTC time: Sun, 01 Jan 2017 00:00:00 +0000 You can use the time zone code below (date_default_timezone_set) to switch the time zone of the input date
Perl Epoch Converter Routines Perl Epoch Converter Routines How to convert epoch UNIX timestamps to normal readable date time using Perl Getting current epoch time in Perl Converting from epoch to normal date in Perl Converting from normal date to epoch in Perl Comments
Preferences - Epoch Converter The locale setting is used to detect a date format (and 'your time zone'-dates will be displayed in your language) Your default (autodetected) locale is unknown
C Epoch Converter Routines Convert from epoch to human-readable date How to convert epoch UNIX timestamps to normal readable date time using C Example C routine using STRFTIME STRFTIME converts information from a time structure to a string form, and writes the string into the memory area pointed to by "string" #include <stdio h> #include <time h> int main(void) {