datetime(year, month, day)
To return a timestamp out of the given year, month, and day numbers.datetime(year, month, day, hour)
To return a timestamp out of the given year, month, day, and hour numbers.datetime(year, month, day, hour, minute)
To return a timestamp out of the given year, month, day, hour, and minute numbers.datetime(year, month, day, hour, minute, second)
To return a timestamp out of the given year, month, day, hour, minute, and second numbers.datetime(year, month, day, hour, minute, second, millis)
To return a timestamp out of the given year, month, day, hour, minute, second, and millisecond numbers.datetime(myDate, myTime)
To convert a given date and a time to a timestamp.datetime(millis)
To convert a given number to a timestamp where the number represents the Unix time in milliseconds.