dBµV to Volts online calculator & Python code
Use this online calculator to convert a voltage in dBµV to a voltage in Volts.
Also see Volts to dBµV online calculator & Python code
Σ
TechOverflow calculators:
You can enter values with SI suffixes like 12.2m (equivalent to 0.012) or 14k (14000) or 32u (0.000032).
The results are calculated while you type and shown directly below the calculator, so there is no need to press return or click on a Calculate button.
You can enter values with SI suffixes like 12.2m (equivalent to 0.012) or 14k (14000) or 32u (0.000032).
The results are calculated while you type and shown directly below the calculator, so there is no need to press return or click on a Calculate button.
dBµV
⚠
Formula:
$$U_{\text{Volts}} = \frac{10^{\frac{U_{dBµV}}{20}}}{1\,000\,000 \frac{V}{µV}}$$Python code:
dbv_to_volts_converter.py
def dbuv_to_volts(dbuv):
"""Convert a voltage in dBµV to a voltage in volts"""
return (10**(dbuv/20.))/1e6Check out similar posts by category:
Calculators, Electronics
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow