{"id":3067,"date":"2026-08-14T10:03:52","date_gmt":"2026-08-14T10:03:52","guid":{"rendered":"https:\/\/firstfibertech.com\/?p=3067"},"modified":"2026-08-14T10:22:54","modified_gmt":"2026-08-14T10:22:54","slug":"the-dbm-to-mw-power-conversion-guide-with-real-time-calculator","status":"publish","type":"post","link":"https:\/\/firstfibertech.com\/fr\/blog\/the-dbm-to-mw-power-conversion-guide-with-real-time-calculator\/","title":{"rendered":"Guide de conversion de puissance de dBm en mW (avec calculateur en temps r\u00e9el)"},"content":{"rendered":"<p class=\"wp-block-paragraph\">In radio frequency (RF) engineering, network communications (like Wi-Fi and IoT setups), and audio engineering, dealing with signal power levels is a daily task. When reading device spec sheets or testing systems, you&#8217;ll constantly run into two different units of power: <strong>dBm<\/strong> et <strong>mW<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To make your workflow faster and help you avoid tedious manual math, we built a two-way, real-time conversion calculator.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Real-Time Power Calculator<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you need to convert absolute power into a logarithmic scale or vice versa, simply enter a value below to get an instant result.<\/p>\n\n\n    <div style=\"max-width: 400px; margin: 20px auto; padding: 25px; border: 1px solid #e2e8f0; border-radius: 10px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); background-color: #ffffff;\">\n        <h3 style=\"text-align: center; margin-top: 0; margin-bottom: 20px; color: #1a202c; font-size: 1.25rem;\">\n            dBm \u2194 mW Calculator        <\/h3>\n        \n        <div style=\"margin-bottom: 15px;\">\n            <label for=\"calc-dbm\" style=\"display: block; margin-bottom: 8px; color: #4a5568; font-size: 14px;\">\n                Power (dBm):            <\/label>\n            <input type=\"number\" id=\"calc-dbm\" oninput=\"dbmToMw()\" placeholder=\"Enter dBm value...\" style=\"width: 100%; padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; box-sizing: border-box; font-size: 16px; outline: none; transition: border-color 0.2s;\">\n        <\/div>\n        \n        <div style=\"margin-bottom: 10px;\">\n            <label for=\"calc-mw\" style=\"display: block; margin-bottom: 8px; color: #4a5568; font-size: 14px;\">\n                Power (mW):            <\/label>\n            <input type=\"number\" id=\"calc-mw\" oninput=\"mwToDbm()\" placeholder=\"Enter mW value...\" style=\"width: 100%; padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; box-sizing: border-box; font-size: 16px; outline: none; transition: border-color 0.2s;\">\n        <\/div>\n        \n        <p id=\"calc-error\" style=\"color: #e53e3e; font-size: 13px; display: none; margin: 5px 0 0 0;\">\n            Error: mW value must be greater than 0        <\/p>\n    <\/div>\n\n    <script>\n    function dbmToMw() {\n        let dbmInput = document.getElementById(\"calc-dbm\").value;\n        let mwInput = document.getElementById(\"calc-mw\");\n        let errorMsg = document.getElementById(\"calc-error\");\n        \n        if (dbmInput === \"\") {\n            mwInput.value = \"\";\n            errorMsg.style.display = \"none\";\n            return;\n        }\n        \n        let dbm = parseFloat(dbmInput);\n        let mw = Math.pow(10, dbm \/ 10);\n        \n        if (mw < 0.0001 || mw > 1000000) {\n             mwInput.value = mw.toExponential(4);\n        } else {\n             mwInput.value = parseFloat(mw.toFixed(6)); \n        }\n        errorMsg.style.display = \"none\";\n    }\n\n    function mwToDbm() {\n        let mwInput = document.getElementById(\"calc-mw\").value;\n        let dbmInput = document.getElementById(\"calc-dbm\");\n        let errorMsg = document.getElementById(\"calc-error\");\n        \n        if (mwInput === \"\") {\n            dbmInput.value = \"\";\n            errorMsg.style.display = \"none\";\n            return;\n        }\n        \n        let mw = parseFloat(mwInput);\n        \n        if (mw <= 0) {\n            errorMsg.style.display = \"block\";\n            dbmInput.value = \"\";\n            return;\n        }\n        \n        let dbm = 10 * Math.log10(mw);\n        dbmInput.value = parseFloat(dbm.toFixed(4));\n        errorMsg.style.display = \"none\";\n    }\n    <\/script>\n    \n\n\n\n<h3 class=\"wp-block-heading\">What are dBm and mW?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Before diving into the math, let&#8217;s quickly review what these units represent:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>mW (Milliwatt):<\/strong> This is an absolute unit of power, representing one-thousandth of a watt (0.001 W). It operates on a linear scale, meaning 20 mW is exactly twice as powerful as 10 mW.<\/li>\n\n\n\n<li><strong>dBm (Decibel-milliwatt):<\/strong> This is a logarithmic unit of power referenced to 1 mW. Because RF signal power spans a massive range\u2014from incredibly weak received signals to highly powerful transmissions\u2014a logarithmic scale compresses long strings of zeros into manageable two- or three-digit numbers.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A handy rule of thumb to remember:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>0 dBm<\/strong> always equals <strong>1 mW<\/strong>.<\/li>\n\n\n\n<li>Every <strong>3 dBm<\/strong> increase roughly <em>doubles<\/em> the power in mW.<\/li>\n\n\n\n<li>Every <strong>10 dBm<\/strong> increase multiplies the power in mW by <em>10<\/em>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">The Math Behind the Conversion<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you are writing code or want to calculate this manually on a scientific calculator, here are the core formulas.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Converting dBm to mW:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To convert decibel-milliwatts to milliwatts, use the following equation:<\/p>\n\n\n\n<div style=\"text-align: center; font-size: 1.25em; margin: 30px 0; letter-spacing: 0.05em;\">\n    <i>P<\/i><sub>(mW)<\/sub> = 10<span style=\"display: inline-flex; flex-direction: column; vertical-align: super; text-align: center; font-size: 0.65em; margin-left: 4px; line-height: 1.2;\">\n        <span style=\"border-bottom: 1px solid currentColor; padding: 0 4px;\"><i>P<\/i><sub>(dBm)<\/sub><\/span>\n        <span style=\"padding: 0 4px;\">10<\/span>\n    <\/span>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Converting mW to dBm:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To convert milliwatts to decibel-milliwatts, we use a base-10 logarithm:<\/p>\n\n\n\n<div style=\"text-align: center; font-size: 1.25em; margin: 30px 0; letter-spacing: 0.05em;\">\n    <i>P<\/i><sub>(dBm)<\/sub> = 10 &middot; log<sub>10<\/sub>(<i>P<\/i><sub>(mW)<\/sub>)\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Why Do We Need Both Units?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Different scenarios call for different units in real-world applications:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Transmission (Tx) Power:<\/strong> Router or radio transmitter spec sheets often use mW to indicate maximum output power (e.g., 100 mW or 500 mW).<\/li>\n\n\n\n<li><strong>Receive (Rx) Sensitivity:<\/strong> The minimum signal a receiver can detect is usually incredibly weak, making dBm much more practical to read (e.g., -90 dBm).<\/li>\n\n\n\n<li><strong>Link Budget Calculations:<\/strong> When calculating antenna gain, cable loss, and free space path loss, it is much easier to add and subtract logarithmic values (dB and dBm) than to multiply and divide massive linear values (mW).<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Foire aux questions (FAQ)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Q: Can mW be negative?<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">No. Since a milliwatt is an absolute measure of physical power, it cannot drop below zero. However, dBm <em>can<\/em> be negative. A negative dBm value simply means the power is less than 1 mW (for example, -10 dBm equals 0.1 mW).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Q : Quelle est la diff\u00e9rence entre le dB et le dBm ?<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>dBm<\/strong> is an absolute measurement of power referenced to exactly 1 milliwatt. <strong>dB<\/strong> (Decibel) is a relative measurement used to express the ratio or difference between two values (like signal gain from an antenna, or loss from a cable). You use dBm to state <em>how much<\/em> power exists, and dB to state how much it <em>changed<\/em>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Q: Is 30 dBm a lot of power?<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Dans le cadre d'un r\u00e9seau sans fil standard, oui. 30 dBm correspondent \u00e0 1 000 mW (soit exactement 1 watt). Il s'agit de la puissance d'\u00e9mission maximale autoris\u00e9e par la loi pour de nombreux routeurs et points d'acc\u00e8s Wi-Fi dans diverses r\u00e9gions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Q: Why do my phone&#8217;s Wi-Fi or cellular signals show as negative numbers?<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Signal strength is measured at the receiver (your phone). By the time an RF signal travels from the cell tower or router, through the air, and through walls, it loses a massive amount of energy. The received power is a microscopic fraction of a milliwatt, which translates to a negative dBm value (typically between -40 dBm and -100 dBm).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Hopefully, this tool saves you time in your daily RF calculations. If you have any questions about link budgets, or if you want us to add more tools (like a VSWR calculator), let us know in the comments below!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>","protected":false},"excerpt":{"rendered":"<p>Dans le domaine de l'ing\u00e9nierie des radiofr\u00e9quences (RF), des communications en r\u00e9seau (comme les installations Wi-Fi et IoT) et de l'ing\u00e9nierie audio, la gestion des niveaux de puissance des signaux fait partie du quotidien. Lorsque vous consultez les fiches techniques des appareils ou que vous testez des syst\u00e8mes, vous rencontrez constamment deux unit\u00e9s de puissance diff\u00e9rentes : le dBm et le mW. Pour acc\u00e9l\u00e9rer votre flux de travail et vous \u00e9viter des op\u00e9rations manuelles fastidieuses\u2026 <a title=\"Guide de conversion de puissance de dBm en mW (avec calculateur en temps r\u00e9el)\" class=\"read-more\" href=\"https:\/\/firstfibertech.com\/fr\/blog\/the-dbm-to-mw-power-conversion-guide-with-real-time-calculator\/\" aria-label=\"En savoir plus sur The dBm to mW Power Conversion Guide (with Real-Time Calculator)\">Lire la suite<\/a><\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[59],"tags":[],"class_list":["post-3067","post","type-post","status-publish","format-standard","hentry","category-online-tools"],"_links":{"self":[{"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/posts\/3067","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/comments?post=3067"}],"version-history":[{"count":4,"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/posts\/3067\/revisions"}],"predecessor-version":[{"id":3073,"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/posts\/3067\/revisions\/3073"}],"wp:attachment":[{"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/media?parent=3067"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/categories?post=3067"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/firstfibertech.com\/fr\/wp-json\/wp\/v2\/tags?post=3067"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}