Herramienta de conversión de Unix Timestamp Segundos desde el 1 de enero de 1970 (UTC)

Hora actual:
Segundo
Cambiar formato
Segundo
Segundo
(adsbygoogle = window.adsbygoogle || []).push({});

¿Qué es un Unix Timestamp?

Es un método de representación del tiempo en segundos, calculado desde el 1 de enero de 1970 en Tiempo Universal Coordinado (UTC).

El Unix Timestamp, también conocido como Unix time o tiempo POSIX, se utiliza comúnmente para registrar la hora de eventos, calcular intervalos de tiempo y rastrear y ordenar el tiempo en diversas aplicaciones. Dado que el Unix Timestamp se mide en segundos, es consistente en todo el mundo y no se ve afectado por las zonas horarias ni la ubicación geográfica. Por ejemplo, si necesitas registrar la hora de eventos en Estados Unidos y China, puedes asegurarte de que los Unix Timestamps sean coherentes. Para obtener más información, consulta Base de conocimientos de Narrative - ¿Qué es el tiempo Unix?

Métodos para obtener el Unix Timestamp actual en diferentes idiomas:

Javatime
JavaScriptMath.round(new Date().getTime()/1000)
Microsoft .NET / C# epoch = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000
MySQLSELECT unix_timestamp(now())
Perltime
PHPtime()
PostgreSQLSELECT extract(epoch FROM now())
Pythonimport time + time.time()
RubyTime.now、Time.new、Time.now.to_i
Go import time + int32(time.Now().Unix())
SQL ServerSELECT DATEDIFF(s, '1970-01-01 00:00:00', GETUTCDATE())
Unix / Linuxdate +%s
VBScript / ASPDateDiff("s", "01/01/1970 00:00:00", Now())

Métodos para convertir Unix Timestamp a tiempo convencional en diferentes idiomas:

Java String date = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").format(new java.util.Date(Unix timestamp * 1000))
JavaScript var unixTimestamp = new Date(Unix timestamp * 1000) + commonTime = unixTimestamp.toLocaleString()
Linuxdate -d @Unix timestamp
MySQLfrom_unixtime(Unix timestamp)
Perl my $time = Unix timestamp + my ($sec, $min, $hour, $day, $month, $year) = (localtime($time))[0,1,2,3,4,5,6]
PHPdate('r', Unix timestamp)
PostgreSQL SELECT TIMESTAMP WITH TIME ZONE 'epoch' + Unix timestamp) * INTERVAL '1 second';
Pythonimport time + time.gmtime(Unix timestamp)
RubyTime.at(Unix timestamp)
SQL ServerDATEADD(s, Unix timestamp, '1970-01-01 00:00:00')
VBScript / ASPDateAdd("s", Unix timestamp, "01/01/1970 00:00:00")

Métodos para convertir tiempo convencional a Unix Timestamp en diferentes idiomas:

Java long epoch = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").parse("01/01/1970 01:00:00");
JavaScript var commonTime = new Date(Date.UTC(year, month - 1, day, hour, minute, second))
MySQLSELECT unix_timestamp(time)
Perl use Time::Local + my $time = timelocal($sec, $min, $hour, $day, $month, $year);
PHPmktime(hour, minute, second, month, day, year)
PostgreSQLSELECT extract(epoch FROM date('YYYY-MM-DD HH:MM:SS'));
Python import time + int(time.mktime(time.strptime('YYYY-MM-DD HH:MM:SS', '%Y-%m-%d %H:%M:%S')))
RubyTime.local(year, month, day, hour, minute, second)
SQL ServerSELECT DATEDIFF(s, '1970-01-01 00:00:00', time)
Unix / Linuxdate +%s -d"Jan 1, 1970 00:00:01"
VBScript / ASPDateDiff("s", "01/01/1970 00:00:00", time)

Ofertas especiales:(Todas las funciones de este sitio web son gratuitas y se mantienen a través de anuncios y patrocinadores)

X
Colaboración Empresarial:
(adsbygoogle = window.adsbygoogle || []).push({});
(adsbygoogle = window.adsbygoogle || []).push({});