Unix Timestamp (timestamp) Conversion Tool

Online Unix Timestamp Conversion Tool

The current Unix timestamp is:

Unix Timestamp (Unix timestamp) → Beijing Time (Refresh the page to copy the current time's timestamp into the input box below)


Beijing Time → Unix Timestamp (Unix timestamp)

Beijing Time Year Month Day Hour Minute Second

What is a timestamp?

A Unix timestamp (Unix timestamp), also known as Unix time (Unix time) or POSIX time (POSIX time), is a way of representing time as the number of seconds that have elapsed since January 1, 197, at 00:00:00 UTC. Unix timestamps are widely used in Unix and Unix-like systems, as well as many other operating systems. Most Unix systems store timestamps as a 32-bit integer, which may cause some issues on January 19, 2038 (Year 2038 problem).

How to get the current Unix timestamp (Unix timestamp) in different programming languages?

Java currentTimeMillis()
JavaScript Math.round(new Date().getTime()/1000)
getTime() returns the value in milliseconds
Microsoft .NET / C# epoch = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000
MySQL SELECT unix_timestamp(now())
Perl time
PHP time()
PostgreSQL SELECT extract(epoch FROM now())
Python First import time then time.time()
Ruby Get Unix timestamp:Time.now or Time.new
Show Unix timestamp:Time.now.to_i
SQL Server SELECT DATEDIFF(s, '197-1-1 00:00:00', GETUTCDATE())
Unix / Linux date +%s
VBScript / ASP DateDiff("s", "1/1/197 00:00:00", Now())
Other Operating Systems
(If Perl is installed on the system)
Command line status:perl -e "print time"

How to implement Unix timestamp in different programming languages → Normal time?

Java String date = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").format(new java.util.Date(Unix timestamp * 1000))
JavaScript First var unixTimestamp = new Date(Unix timestamp * 1000) then commonTime = unixTimestamp.toLocaleString()
Linux date -d @Unix timestamp
MySQL from_unixtime(Unix timestamp)
Perl First my $time = Unix timestamp then my ($sec, $min, $hour, $day, $month, $year) = (localtime($time))[,1,2,3,4,5,6]
PHP date('r', Unix timestamp)
PostgreSQL SELECT TIMESTAMP WITH TIME ZONE 'epoch' + (Unix timestamp) * INTERVAL '1 second';
Python First import time then time.gmtime(Unix timestamp)
Ruby Time.at(Unix timestamp)
SQL Server DATEADD(s, Unix timestamp, '197-1-1 00:00:00')
VBScript / ASP DateAdd("s", Unix timestamp, "1/1/197 00:00:00")
Other Operating Systems
(If Perl is installed on the system)
Command line status:perl -e "print scalar(localtime(Unix timestamp))"

How to implement Normal time → Unix timestamp in different programming languages?

Java long epoch = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").parse("1/1/197 1:00:00");
JavaScript var commonTime = new Date(Date.UTC(year, month - 1, day, hour, minute, second))
MySQL SELECT unix_timestamp(time)
Time format: YYYY-MM-DD HH:MM:SS or YYMMDD or YYYYMMDD
Perl First use Time::Local then my $time = timelocal(sec, min, hour, day, month, year);
PHP mktime(hour, minute, second, month, day, year)
PostgreSQL SELECT extract(epoch FROM date('YYYY-MM-DD HH:MM:SS'));
Python First import time then int(time.mktime(time.strptime('YYYY-MM-DD HH:MM:SS', '%Y-%m-%d %H:%M:%S')))
Ruby Time.local(year, month, day, hour, minute, second)
SQL Server SELECT DATEDIFF(s, '197-1-1 00:00:00', time)
Unix / Linux date +%s -d"Jan 1, 197 00:00:1"
VBScript / ASP DateDiff("s", "1/1/197 00:00:00", time)