Now is June 5, 2026, 1:53 PM. Adding 1 day, 0 hours, 0 minutes gives June 6, 2026, 1:53 PM (Saturday). Total duration: 24 hours 0 minutes.
Common add/subtract queries
| Time change | Total hours | Use case |
|---|---|---|
| 8 hours from now | 8:00 | Workday end |
| 1 day from now | 24:00 | Tomorrow same time |
| 2 days from now | 48:00 | Day after tomorrow |
| 1 week from now | 168:00 | Next week same time |
| 36 hours from now | 36:00 | Tomorrow + 12 hours |
| 15 hours from now | 15:00 | Flight + 1 hour |
| 2 hours 30 minutes from now | 2:30 | Quick meeting |
| 1 day 8 hours from now | 32:00 | Long work session |
💡 Did you know? A "sidereal day" (Earth's rotation relative to stars) is 23 hours 56 minutes 4 seconds — about 4 minutes shorter than a solar day. Over a year, this difference accumulates. Leap seconds are occasionally added to UTC to compensate.
Frequently Asked Questions
That from now is June 6, 2026, 1:53 PM (Saturday). The current time is June 5, 2026, 1:53 PM (Friday).
Use this calculator: enter the number of days, hours, and minutes, then choose 'from now' (add) or 'ago' (subtract). The result shows the resulting date, time, and day of the week.
In Excel: =A1 + TIME(8, 0, 0) adds 8 hours to a time. =A1 + (8/24) also works. =A1 + 8/24 + 0/1440 if you want to add days too. For 1 day, 8 hours: =A1 + 1 + 8/24.
In JavaScript: const d = new Date(); d.setHours(d.getHours() + 1); d.setMinutes(d.getMinutes() + 30); console.log(d). In Python: from datetime import datetime, timedelta; print(datetime.now() + timedelta(hours=1, minutes=30)).
24 hours from now is exactly tomorrow at the same time. So if it's 3 PM Tuesday, 24 hours from now is 3 PM Wednesday. The day of the week advances by 1 (except at midnight boundary, which can be ambiguous).
36 hours from now = 1 day + 12 hours. So if it's 9 AM Monday, 36 hours from now is 9 PM Tuesday. The day-of-week advances by 1.5 days, so the time-of-day goes 12 hours later on the next-next day.
1 day 8 hours = 24 + 8 = 32 hours. Or 1,920 minutes. Or 115,200 seconds. Useful for tracking long work sessions, travel time, or study duration.
24 hours = 1 days. Or 1440 minutes. Our Time Units Converter handles all unit conversions.