Seconds to Milliseconds Converter
Convert seconds to milliseconds instantly. Enter any value — the result updates as you type. 1 second = exactly 1,000 milliseconds. This is the simplest conversion in the entire series — a pure SI prefix multiplication by 1,000. No fractions, no Gregorian corrections, no calendar drift. Just ×1,000 and ÷1,000. Use the swap button to convert milliseconds back to seconds.
| Seconds | Milliseconds |
|---|---|
| 0.001 | 1 |
| 0.01 | 10 |
| 0.1 | 100 |
| 0.5 | 500 |
| 1 | 1,000 |
| 2 | 2,000 |
| 5 | 5,000 |
| 10 | 10,000 |
| 30 | 30,000 |
| 60 | 60,000 |
| 100 | 100,000 |
| 1,000 | 1,000,000 |
How to Convert Seconds to Milliseconds
Multiply seconds by 1,000 to get milliseconds. Divide milliseconds by 1,000 to get seconds. This is the SI metric prefix "milli" (m = 10⁻³), making it the most mathematically pure time conversion possible:
Milliseconds = Seconds × 1,000
Seconds = Milliseconds ÷ 1,000
1 second = 1,000 ms | 1 ms = 0.001 s = 10⁻³ s
"milli" = Latin for thousandth — the SI prefix for ×10⁻³The second and millisecond are both SI units with a clean power-of-ten relationship. Unlike conversions involving minutes (×60), hours (×3,600), or days (×86,400), the second-to-millisecond conversion uses only a decimal shift. This is why virtually all programming languages, APIs, and measurement systems use milliseconds as their primary time unit — converting from seconds is trivial, and the millisecond provides enough precision for most real-world use cases without the overhead of nanosecond arithmetic.
Conversion table (Seconds × 1,000 = Milliseconds)
The SI Milli Prefix: Why 1,000 is the Purest Time Conversion
The millisecond is defined by the International System of Units (SI) as exactly 10⁻³ seconds. This makes the second-to-millisecond conversion the only time conversion in this series that requires no calendar knowledge whatsoever — just a factor of 1,000:
Seconds to Milliseconds: Photography, Shutter Speeds and Exposure
Every camera shutter speed is a fraction of a second — which is a number of milliseconds. Photographers intuitively know these millisecond values:
Seconds to Milliseconds: Sports Timing and the Millisecond in Athletics
World Athletics (formerly IAAF) requires timing to 1/1,000 of a second (1 ms) for sprint events. Every world record in running is defined to the millisecond:
Seconds to Milliseconds: The Human Body in Milliseconds
- Eye blink (150–400 ms = 0.15–0.40 s): The fastest involuntary human action. A voluntary blink: ~300–400 ms. The "blink of an eye" = 150–400 ms = 0.15–0.40 seconds
- Reaction time (150–250 ms = 0.15–0.25 s): Visual reaction (light stimulus): 150–200 ms. Auditory reaction (sound): 120–160 ms. Sports reaction (trained athlete): ~100–120 ms. False start threshold in sprinting: <100 ms (considered impossible for human reaction)
- ECG intervals: PR interval (atrial conduction): 120–200 ms (0.12–0.20 s). QRS complex (ventricular depolarisation): 80–120 ms. QT interval: 350–450 ms. R-R interval at 75 bpm: 800 ms = 0.8 s. Each of these is clinically measured to the nearest millisecond
- Nerve conduction velocity: Motor nerve conduction: 40–70 m/s. Sensory nerve: 40–60 m/s. A nerve impulse travels 40–70 mm per millisecond. Pain signal (C fibres, slow): 0.5–2 m/s = 0.5–2 mm per millisecond
- Audio perception: Two sounds separated by <1 ms (0.001 s) are perceived as simultaneous. Interaural time difference (ITD) for sound localisation: 0–690 μs = 0–0.69 ms. Humans can detect audio delays as small as 2–6 ms = 0.002–0.006 s
Seconds to Milliseconds: Computing, Networks and the Digital Millisecond
Seconds to Milliseconds: Speed of Light and Physics
- Speed of light in 1 second: 299,792,458 m = 299,792.458 km per second = 299.792 km per millisecond. In 1 ms, light travels 299.8 km — roughly the distance from London to Paris
- Speed of sound in 1 second: ~343 m/s at 20°C = 0.343 m per millisecond. The "30 seconds for 10km" lightning rule uses seconds; in ms: lightning is 0.343 m/ms from thunder
- GPS timing precision: GPS signals are timestamped to 20 nanoseconds = 0.000020 ms = 0.000000020 s. The GPS receiver computes position from timing differences of ~67 ms (signal travel from satellite at 20,200 km altitude). 1 ms of GPS timing error = ~300 km of position error
- Atomic clock stability (Cs-133): Accurate to ~10⁻¹⁶ s/s = 10⁻¹³ ms/ms. Over 1 second of operation, drift is <10⁻¹⁶ s = 10⁻¹³ ms. Over 1 millisecond of operation, drift is <10⁻¹⁹ ms
Tips and Recommendations
- Formula: Milliseconds = Seconds × 1,000. Seconds = Milliseconds ÷ 1,000. No approximation ever — exact for all real numbers.
- In JavaScript:
const ms = seconds * 1000;. Seconds from Date:Date.now() / 1000. Performance timing:performance.now()returns ms.setTimeout(fn, seconds * 1000). Note: JavaScript'sDateuses ms internally; dividing by 1,000 gives Unix timestamp in seconds - In Python:
ms = seconds * 1000. Fromtime.time()(returns seconds):ms = time.time() * 1000.time.sleep(seconds)takes seconds; usetime.sleep(ms / 1000)for ms-based delays.datetime.timedelta:delta.total_seconds() * 1000 - In Excel:
=A1*1000(seconds to ms).=A1/1000(ms to seconds). Time cells store fractions of a day:=A1*86400*1000converts Excel time to ms - The decimal shift shortcut: To convert seconds to ms: move the decimal point 3 places right (×1,000). To convert ms to seconds: move the decimal point 3 places left (÷1,000). Example: 0.045 s → 45 ms. 750 ms → 0.750 s
- Common values to memorise: 1s = 1,000ms. 0.1s = 100ms (human perception threshold). 0.016s ≈ 16ms (60fps frame). 0.001s = 1ms (sports timing, 1/1000 shutter)
Seconds to Milliseconds — Frequently Asked Questions
How many milliseconds are in 1 second?
Exactly 1,000 milliseconds. This is defined by the SI prefix "milli" (= 10⁻³), making it the most exact time conversion: 1 s = 10³ ms with no approximation or calendar correction ever needed.
How many milliseconds is 0.5 seconds?
0.5 × 1,000 = exactly 500 milliseconds.
How many seconds is 1,000 milliseconds?
1,000 ÷ 1,000 = exactly 1 second. 1,000 ms is the definition of 1 second.
How many milliseconds is a human blink?
A voluntary eye blink takes approximately 300–400 milliseconds (0.3–0.4 seconds). The fastest involuntary blink can be as short as 150 ms (0.15 s). The common phrase "in the blink of an eye" describes an interval of 150–400 ms.
What shutter speed equals exactly 1 millisecond?
A shutter speed of 1/1000 s equals exactly 1 millisecond. This is one of the most common shutter speeds used in sports and action photography.
Why does JavaScript use milliseconds instead of seconds?
JavaScript's Date.now() returns the number of milliseconds since January 1, 1970 (Unix epoch). Milliseconds provide enough precision for web events (animations, network timing, user interactions) while remaining as simple integers without decimal seconds. Convert to seconds: Date.now() / 1000.
How do I convert seconds to milliseconds in JavaScript?
const ms = seconds * 1000;. For setTimeout: setTimeout(fn, seconds * 1000). Current time in ms: Date.now(). Performance timing in ms: performance.now().
How do I convert seconds to milliseconds in Python?
ms = seconds * 1000. From time.time(): ms = time.time() * 1000. From timedelta: delta.total_seconds() * 1000. Sleep in ms: time.sleep(ms / 1000).
How do I convert seconds to milliseconds in Excel?
=A1*1000. Reverse: =A1/1000. From Excel time values (stored as fraction of a day): =A1*86400*1000.
How far does light travel in 1 millisecond?
Light travels 299,792,458 m/s. In 1 ms (0.001 s): 299,792,458 × 0.001 = 299,792.458 m ≈ 300 km. In 1 millisecond, light travels roughly the distance from London to Paris, or from Bucharest to Cluj-Napoca.
How far does sound travel in 1 millisecond?
Sound travels ~343 m/s at 20°C. In 1 ms: 343 × 0.001 = 0.343 m ≈ 34 cm. Sound travels about one foot (30 cm) per millisecond in air.
Is 1 ms the minimum reaction time for athletes?
No — it's far below human capability. World Athletics rules disqualify sprinters for false starts if reaction time is <100 ms (0.1 s), as no human can react to a stimulus in under 100 ms. 1 ms = 0.001 s is 100 times faster than the minimum human reaction time.