← All tools
// Time

Seconds Converter online

Convert seconds ↔ HH:MM:SS ↔ human readable time — runs in your browser

Chunky Munster mascot
by
CHUNKY
MUNSTER
// HH:MM:SS Output
Output will appear here...
Days
Hours
Minutes
Seconds

Converting between seconds and hours:minutes:seconds (HH:MM:SS) is a common task when working with video durations, timer values, database timestamps, and API responses. This tool also converts seconds to a human-readable format such as "2 hours, 30 minutes, 45 seconds".

How to Convert Seconds to HH:MM:SS

The conversion formula is straightforward. Given a total number of seconds S: Hours = floor(S / 3600), Minutes = floor((S mod 3600) / 60), Seconds = S mod 60. For example, 9000 seconds = 2 hours, 30 minutes, 0 seconds = 02:30:00.

Quick Reference

Frequently Asked Questions

How many seconds in a day?

There are 86,400 seconds in a day (24 hours × 60 minutes × 60 seconds).

Can this handle days?

Yes. If the total exceeds 86,400 seconds, the days component is shown separately in the breakdown below the output.