Time converter
Convert µs to ms — microsecond to millisecond
Convert microseconds (µs) to milliseconds (ms) instantly. 1 µs = 0.001 ms. Free calculator with formula, conversion table, and s base-unit equivalent.
Also searched as: us to ms, micro second to milli second, micro to milli second, micro sec to milli sec.
- Scientific Notation
- 2.5 × 10² ms
- Real-World Context
- 1 µs is roughly the duration of a high-speed strobe flash
- Step-by-Step
- 1. Start with 250,000 µs. 2. Since 1 micro-unit = 1/1,000th of a milli-unit, divide by 1,000. 3. 250,000 ÷ 1,000 = 250 ms.
- Formula Used
- ÷ 1,000 (micro = 10⁻⁶, milli = 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 µs to ms answer
1 µs = 0.001 ms
divide by 1,000
250,000 µs = 250 ms
microsecond to millisecond formula
Milli is 10^-3 and micro is 10^-6. They are three powers of ten apart, so every µs to ms conversion uses the exact factor 1,000.
ms = µs ÷ 1,000
250,000 µs ÷ 1,000 = 250 msµs to ms table
Common values for microseconds converted to millisecondsand the base unit (s).
| microseconds | milliseconds | seconds |
|---|---|---|
| 1 µs | 0.001 ms | 0.000001 s |
| 10 µs | 0.01 ms | 0.00001 s |
| 100 µs | 0.1 ms | 0.0001 s |
| 1,000 µs | 1 ms | 0.001 s |
| 2,000 µs | 2 ms | 0.002 s |
| 5,000 µs | 5 ms | 0.005 s |
| 10,000 µs | 10 ms | 0.01 s |
| 20,000 µs | 20 ms | 0.02 s |
| 50,000 µs | 50 ms | 0.05 s |
| 100,000 µs | 100 ms | 0.1 s |
| 1,000,000 µs | 1,000 ms | 1 s |
Understanding microseconds and milliseconds
A microsecond (µs) is 10⁻⁶ of the base unit (second) and a millisecond (ms) is 10⁻³. They sit three powers of ten apart, so going from µs to ms means dividing by exactly 1,000 — move the decimal point three places to the left.
Microseconds are the domain of embedded timing and signal processing — ADC conversion times, interrupt latency, PWM edges, ultrasonic time-of-flight. Sound travels roughly 343 µm per µs in air, which is exactly why ranging sensors count in µs.
This calculator shifts the decimal exponent rather than multiplying in binary floating point, so 250,000 µs returns exactly 250 ms — not a value with a trailing rounding error.
Common µs to ms 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 µs vs ms
microseconds and milliseconds 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.