∲
Amilli
A simple website to help with time
Put a desired timestamp, year or date string into the path.
https://amil.li/<In Here 🙃>
Epoch
/741398400000
ISO-8601
/2000-01-20T12:34:56.777Z
Date
/1987-08-27
Resume
var now = new Date(
)
For Humans (Local)
...
now.toString()
For Humans (UTC)
...
now.toUTCString()
Epoch (UTC)
...
now.getTime().toString()
ISO-8601 (UTC)
...
now.toISOString()