The Core Math: Converting Voltage to Decibels
The fundamental formula for converting a voltage measurement into decibels (dB) is:
dB = 20 × log10(Vmeasured / Vreference)
To understand why we use 20 instead of 10, you have to look at the relationship between voltage and power. The standard decibel formula for power is 10 × log10(P1 / P2). Because power is proportional to voltage squared divided by resistance (P = V² / R), substituting voltage into the power equation yields 10 × log10((V1²/R) / (V2²/R)). Assuming the resistance is constant, the R cancels out, leaving 10 × log10((V1 / V2)²). Following logarithmic rules, the exponent "2" drops down and multiplies the 10, giving us the 20 multiplier. If you forget this and use 10 for voltage ratios, your calculated gain will be exactly half of what it actually is.
Worked Numeric Example: Preamplifier Gain
Let us say you are testing a microphone preamplifier on the bench. The input signal from your function generator is 0.5V RMS, and the output measured by your True-RMS multimeter is 2.0V RMS. You want to express this gain in decibels.
- Identify the ratio: Vout / Vin = 2.0V / 0.5V = 4.
- Apply the log base 10: log10(4) ≈ 0.60206.
- Multiply by 20: 20 × 0.60206 = +12.04 dB.
Your preamp has a voltage gain of +12.04 dB. The critical takeaway here is what this changes in a real installation: it converts multiplicative cascades into simple addition. If this +12.04 dB preamp feeds into a mixing console with a -3 dB pad, and then travels down a long cable with -1.5 dB loss, you do not need to multiply linear voltage ratios (which is tedious and prone to rounding errors). You simply add the decibels: 12.04 - 3.0 - 1.5 = +7.54 dB total system gain. For a deeper dive into the underlying logarithmic math, the All About Circuits primer on decibels provides excellent foundational proofs.
Reference Voltages: dBV, dBu, and dBmV Explained
A decibel is strictly a ratio; it has no absolute physical dimension on its own. To express an absolute voltage (like "the signal is 2 Volts"), you must anchor your ratio to a universally agreed-upon reference voltage. This is where the suffix letters come in. Using the wrong reference is the most common way hobbyists and junior technicians misinterpret datasheet specifications.
| Suffix | Reference Voltage | Common Application | 0 dB Equals |
|---|---|---|---|
| dBV | 1.0 V RMS | Consumer audio, general electronics, Arduino/ESP32 analog references | 1.000 V |
| dBu | 0.7746 V RMS | Professional audio (broadcast, studio mixers, XLR lines) | 0.775 V |
| dBmV | 1.0 mV RMS | Cable TV (CATV), broadband RF signal strength | 1.0 mV |
| dBµV | 1.0 µV RMS | Antenna signal strength, EMI/EMC compliance testing | 1.0 µV |
| dBFS | Full Scale (Digital) | Digital audio, ADC clipping limits (e.g., 24-bit audio interfaces) | Max digital code |
Do not confuse dBu with dBm. While dBu is strictly a voltage reference (0.7746V regardless of impedance), dBm is a power unit referenced to 1 milliwatt. You can only convert dBm to a specific voltage if you know the exact impedance of the circuit. In 50Ω RF systems, 0 dBm equals 0.224V. In legacy 600Ω telephone/audio systems, 0 dBm equals 0.7746V (which is why 0 dBm and 0 dBu are identical only in 600Ω environments). Always verify your system impedance before converting dBm to voltage.
Where You Meet Voltage to Decibel Conversions in Practice
You will rarely need to calculate voltage to decibels for simple DC power rails, but it becomes unavoidable the moment your circuit handles alternating signals, communications, or audio. Here is where this math dictates real-world hardware decisions.
Audio Signal Chains and the 12dB Mismatch
Professional audio equipment operates at a nominal line level of +4 dBu (which translates to 1.228 V RMS). Consumer gear, like a Raspberry Pi audio DAC hat or a standard CD player, operates at -10 dBV (0.316 V RMS). If you plug a consumer -10 dBV output directly into a professional +4 dBu mixer input, the mixer will perceive the signal as being roughly 11.79 dB too quiet. Understanding this voltage-to-decibel gap tells you exactly why you need a +12dB inline booster or a DI box with a pad switch when interfacing consumer DSP boards with studio monitors.
RF Design and Spectrum Analyzers
When tuning an ESP32's 2.4GHz Wi-Fi antenna or debugging a LoRaWAN gateway, your spectrum analyzer will display signals in dBm. If the analyzer reads -30 dBm into a 50Ω input, you are looking at a physical voltage swing. Converting that back to voltage helps you select the correct LNA (Low Noise Amplifier) input range. A -30 dBm signal in a 50Ω system equates to roughly 7.07 mV RMS. If your ADC requires a 1V peak-to-peak swing, you immediately know you need roughly 43 dB of voltage gain in your front-end receiver chain.
Sensor Signal Conditioning and Noise Floors
Piezo vibration sensors and strain gauges often output signals in the microvolt range. When reading the Sound on Sound guide to decibels, you will note that expressing noise floors in dBV makes dynamic range calculations trivial. If your sensor outputs 10 mV (-40 dBV) and your op-amp's noise floor is -90 dBV, your dynamic range is exactly 50 dB. Trying to calculate that using raw linear voltages (0.01V vs 0.0000000316V) is a recipe for spreadsheet errors.
Frequently Asked Questions
How do I convert voltage to decibels without a calculator?
You can use standard bench rules of thumb based on powers of two and ten. +6 dB always means the voltage has doubled. +20 dB means the voltage has multiplied by 10. +40 dB means the voltage has multiplied by 100. Conversely, -6 dB is half the voltage, and -20 dB is one-tenth. If your voltage goes from 1V to 4V, that is two doublings (1V → 2V → 4V), so the gain is +6 dB + 6 dB = +12 dB.
Why is voltage to decibel 20 log instead of 10 log?
Because power is proportional to voltage squared (P = V²/R). When you substitute the voltage equation into the standard 10*log10 power formula, the squared exponent drops down from the logarithm and multiplies the base 10, resulting in 20. If you are measuring actual power (in Watts), you use 10*log10. If you are measuring voltage (in Volts) or current (in Amps) across a constant impedance, you must use 20*log10.
What is the exact voltage of 0 dBu?
0 dBu is exactly 0.774596 Volts RMS (usually rounded to 0.775V on multimeter displays). This highly specific number originates from early 20th-century telephone engineering: it is the exact voltage required to dissipate 1 milliwatt of power across a standard 600Ω telephone line (V = √(P × R) = √(0.001 × 600)). Even though modern pro audio gear rarely uses 600Ω impedance, the 0.775V reference was kept as the "unloaded" (u) standard.
Can I measure decibels directly with a standard digital multimeter?
Many True-RMS multimeters, such as the Fluke 87V or Brymen BM235, feature a dedicated "dB" or "dBV" setting. However, you must check your meter's manual to confirm the reference. Most default to 1V RMS (dBV), but some legacy meters default to 0.775V (dBu) or assume a 600Ω load for dBm readings. Furthermore, multimeters typically only measure AC voltages accurately up to 1 kHz or 20 kHz; they will give wildly inaccurate dB readings if you try to measure a 2.4 GHz RF signal or a 100 kHz PWM waveform with the dB setting.






