Minutes Converters

Simplify your time calculations. Convert minutes to date, microseconds, milliseconds, seconds, hours, days and months — all in one place.

Minutes

min
Up to 20 digits. Values beyond JavaScript safe range may lose precision.

Output

To Date
To microseconds
To milliseconds
To seconds
To hours
To days
To months (≈ 30.44 d)
Months are approximated using 30.44 days.

About the minutes converter

One minute (min) equals sixty seconds. It’s a convenient unit for scheduling, batching work, and human-readable time windows.

Why it matters

Minutes bridge human perception and system time. They help aggregate logs, define timeouts, and plan tasks without losing too much precision.

Typical conversions

  • min → Date: convert a minute value to a human-readable timestamp
  • min → μs / ms / s / h / d: scale time to smaller or larger units
  • min → months: approximate monthly intervals (≈ 30.44 days per month)

Code snippets

Convert minutes to other units:

JavaScript

const minutes = 90;
const hours = minutes / 60;
console.log(`${hours} h`);

Python

minutes = 90
hours = minutes / 60
print(f"{hours} h")

PHP

$minutes = 90;
$hours = $minutes / 60;
echo $hours . " h";

Common errors

IssueExplanation
Forgetting to convert minutes to milliseconds in JS DateJavaScript Date expects milliseconds; multiply minutes by 60,000 before use.
Rounding fractional minutesFloating point rounding can introduce errors; keep as integers where possible.

FAQ

How many minutes are in an hour?
There are 60 minutes in an hour.
How do I convert minutes to days?
Divide the number of minutes by 1,440.
Are minutes always exactly 60 seconds?
Generally yes, but rare leap seconds can make a minute 61 seconds.
Can minutes be fractional?
Yes, use decimals to represent partial minutes.
How do I convert minutes to milliseconds?
Multiply minutes by 60,000.
Copied to clipboard