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.
- 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
| Mega | 2.5 × 10⁻⁷ Ms |
|---|---|
| Kilo | 0.00025 ks |
| Base Unit (seconds) | 0.25 seconds |
| Nano | 250,000,000 ns |
| Pico | 2.5 × 10¹¹ ps |
Quick ms to µs answer
1 ms = 1,000 µs
multiply by 1,000
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 µsms to µs table
Common values for milliseconds converted to microsecondsand the base unit (s).
| milliseconds | microseconds | seconds |
|---|---|---|
| 0.001 ms | 1 µs | 0.000001 s |
| 0.01 ms | 10 µs | 0.00001 s |
| 0.1 ms | 100 µs | 0.0001 s |
| 1 ms | 1,000 µs | 0.001 s |
| 2 ms | 2,000 µs | 0.002 s |
| 5 ms | 5,000 µs | 0.005 s |
| 10 ms | 10,000 µs | 0.01 s |
| 20 ms | 20,000 µs | 0.02 s |
| 50 ms | 50,000 µs | 0.05 s |
| 100 ms | 100,000 µs | 0.1 s |
| 1,000 ms | 1,000,000 µs | 1 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.