Right now it is 4:56 PM on Wednesday, January 22, 2025.
12 minutes from now, it will be 5:08 PM on Wednesday, January 22, 2025.
This is based on EST timezone (which we estimate as your local timezone).
Want to know what your body has planned for the next 12 minutes?
A 12-minute break is perfect for these productive activities:
Need a different calculation for time from now or ago?
Use our calculator to find any past or future time based on your requirements.
Compare how the same timestamp is formatted using different standard conventions.
Each format serves specific use cases in various programming contexts.
Format | Format Code | Current Time | 12 Minutes From Now |
---|---|---|---|
ISO 8601 | c |
2025-01-22T16:56:58-05:00
|
2025-01-22T17:08:58-05:00
|
RFC 2822 | r |
Wed, 22 Jan 2025 16:56:58 -0500
|
Wed, 22 Jan 2025 17:08:58 -0500
|
MySQL DATETIME | Y-m-d H:i:s |
2025-01-22 16:56:58
|
2025-01-22 17:08:58
|
Unix Timestamp | U |
1737583018
|
1737583738
|
Time (12-hour) | g:i:s A |
4:56:58 PM
|
5:08:58 PM
|
Time (24-hour) | H:i:s |
16:56:58
|
17:08:58
|
Date (Short) | n/j/Y |
1/22/2025
|
1/22/2025
|
Date (Medium) | M j, Y |
Jan 22, 2025
|
Jan 22, 2025
|
Date (Long) | l, F j, Y |
Wednesday, January 22, 2025
|
Wednesday, January 22, 2025
|
In the time it takes to take a break, the digital world will:
Need to calculate a time 12 minutes in the future? Here's how to implement it in different programming languages:
// PHP // Get time 12 minutes from now $futureDate = date('Y-m-d H:i:s', strtotime('+12 minutes')); // Using DateTime for more precision $date = new DateTime(); $date->modify('+12 minutes'); echo $date->format('Y-m-d H:i:s'); // With timezone support $date = new DateTime('now', new DateTimeZone('UTC')); $date->modify('+12 minutes'); echo $date->format('Y-m-d H:i:s T');
// JavaScript // Get time 12 minutes from now const futureDate = new Date(Date.now() + 12 * 60000); // Using date methods const date = new Date(); date.setMinutes(date.getMinutes() + 12); console.log(date.toISOString()); // With specific format const formatter = new Intl.DateTimeFormat('en-US', { year: 'numeric', month: 'long', day: 'numeric', hour: 'numeric', minute: 'numeric', second: 'numeric', timeZoneName: 'short' }); console.log(formatter.format(futureDate));
# Python from datetime import datetime, timedelta # Get time 12 minutes from now future_date = datetime.now() + timedelta(minutes=12) # With timezone support from datetime import timezone utc_date = datetime.now(timezone.utc) + timedelta(minutes=12) # Format the dates print(future_date.strftime('%Y-%m-%d %H:%M:%S')) print(utc_date.strftime('%Y-%m-%d %H:%M:%S %Z'))
The time 12 minutes after this page was loaded is 5:08:58 PM on January 22, 2025 but our page gets automatically updated each second to always accuately display 12 minutes from now (go to the top to see updated time).
Our calculator provides highly precise future time predictions by utilizing advanced datetime handling. It accounts for all time-related complexities, including exact second-by-second calculations, transitions between hours, days, months, and years, as well as automatic adjustments for Daylight Saving Time in your local timezone. The result gives you the exact moment in time that will occur 12 minutes from the present.
The future time is calculated by adding exactly 12 minutes to your current local time. The calculation takes into account minute and hour changes, day transitions, month boundaries, and year changes if applicable.
Currently, calculations are based on the current time. We're working on adding the ability to set custom start times - this feature will be available soon! In the meantime, you can use the code examples provided to calculate custom time differences in your preferred programming language.
Yes! Our calculator automatically updates every second to maintain accuracy. It will always show the precise time 12 minutes ahead of the current moment, ensuring you have the most up-to-date calculation.