Milli to Micro – home

Time converter

Convert ms to µs — millisecond to microsecond

Convert milliseconds (ms) to microseconds (µs) instantly. 1 ms = 1,000 µs. Free calculator with formula, conversion table, and s base-unit equivalent.

Also searched as: ms to us, milli second to micro second, milli to micro second, milli sec to micro sec.

MillisecondsEnter your value in Milliseconds
Fromms
MicrosecondsEnter your value in Microseconds
Toµs
Result
250,000 µs
Scientific Notation
2.5 × 10⁵ µs
Real-World Context
1 ms is roughly the duration of a camera flash
Step-by-Step
1. Start with 250 ms. 2. Since 1 milli-unit = 1,000 micro-units, multiply by 1,000. 3. 250 × 1,000 = 250,000 µs.
Formula Used
× 1,000 (milli = 10⁻³, micro = 10⁻⁶)

Quick Conversions

Mega2.5 × 10⁻⁷ Ms
Kilo0.00025 ks
Base Unit (seconds)0.25 seconds
Nano250,000,000 ns
Pico2.5 × 10¹¹ ps

Quick ms to µs answer

Conversion

1 ms = 1,000 µs

Rule

multiply by 1,000

Example

250 ms = 250,000 µs

millisecond to microsecond formula

Milli is 10^-3 and micro is 10^-6. They are three powers of ten apart, so every ms to µs conversion uses the exact factor 1,000.

µs = ms × 1,000
250 ms × 1,000 = 250,000 µs

ms to µs table

Common values for milliseconds converted to microsecondsand the base unit (s).

millisecondsmicrosecondsseconds
0.001 ms1 µs0.000001 s
0.01 ms10 µs0.00001 s
0.1 ms100 µs0.0001 s
1 ms1,000 µs0.001 s
2 ms2,000 µs0.002 s
5 ms5,000 µs0.005 s
10 ms10,000 µs0.01 s
20 ms20,000 µs0.02 s
50 ms50,000 µs0.05 s
100 ms100,000 µs0.1 s
1,000 ms1,000,000 µs1 s

Understanding milliseconds and microseconds

A millisecond (ms) is 10⁻³ of the base unit (second) and a microsecond (µs) is 10⁻⁶. They sit three powers of ten apart, so going from ms to µs means multiplying by exactly 1,000 — move the decimal point three places to the right.

Milliseconds are the unit of anything a person can perceive or a network can measure: frame times, disk seeks, round-trip latency, debounce windows. Typical operating-system scheduler granularity is also a few ms, which sets a floor on what a plain sleep() call can time.

This calculator shifts the decimal exponent rather than multiplying in binary floating point, so 250 ms returns exactly 250,000 µs — not a value with a trailing rounding error.

Common ms to µs mistake

Timing anything below about 100 µs from userspace on a general-purpose OS measures the scheduler, not the event. Use a hardware timer or capture peripheral rather than converting a millisecond clock into microseconds and trusting the extra digits.

When to use ms vs µs

milliseconds and microseconds are used for digital timing, latency, shutter events, embedded systems, and signal processing. Use the larger milli unit when the number becomes easier to scan, and the smaller micro unit when you need finer detail.