{"id":1250,"date":"2026-09-18T22:27:54","date_gmt":"2026-09-18T22:27:54","guid":{"rendered":"https:\/\/neverlosebitcoin.com\/?page_id=1250"},"modified":"2026-09-18T22:27:55","modified_gmt":"2026-09-18T22:27:55","slug":"sats-converter","status":"publish","type":"page","link":"https:\/\/neverlosebitcoin.com\/fr\/calculators\/sats-converter\/","title":{"rendered":"Sats to USD Converter"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">One bitcoin equals 100,000,000 satoshis, or sats. Type any amount below to convert between sats, bitcoin, and US dollars at the live market price.<\/p>\n\n\n\n<div class=\"nlb-calc\">\n<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@400;500;600;700;800&#038;display=swap\" rel=\"stylesheet\">\n<style>\n.nlb-calc { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #F7FAFC; border: 1px solid #E5E7EB; border-radius: 20px; padding: 32px; max-width: 720px; margin: 0 auto; color: #0F172A; }\n.nlb-calc h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 6px; }\n.nlb-calc .nlb-sub { color: #64748B; font-size: 15px; margin: 0 0 24px; line-height: 1.6; }\n.nlb-calc .nlb-row { display: flex; gap: 12px; margin-bottom: 16px; }\n.nlb-calc input, .nlb-calc select { font-family: inherit; font-size: 18px; font-weight: 700; padding: 14px 16px; border: 1px solid #E5E7EB; border-radius: 12px; background: #FFFFFF; color: #0F172A; outline: none; transition: border-color .15s, box-shadow .15s; }\n.nlb-calc input { flex: 1; min-width: 0; }\n.nlb-calc select { cursor: pointer; }\n.nlb-calc input:focus, .nlb-calc select:focus { border-color: #F7931A; box-shadow: 0 0 0 3px rgba(247,147,26,.15); }\n.nlb-calc .nlb-answer { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 14px; padding: 24px; text-align: center; margin-top: 8px; }\n.nlb-calc .nlb-answer .nlb-k { font-size: 12px; font-weight: 600; color: #94A3B8; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }\n.nlb-calc .nlb-answer .nlb-v { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: #F7931A; word-break: break-all; }\n.nlb-calc .nlb-price-row { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: #94A3B8; margin-top: 16px; }\n.nlb-calc .nlb-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; display: inline-block; }\n.nlb-calc .nlb-fine { font-size: 12px; color: #94A3B8; margin: 20px 0 0; line-height: 1.6; text-align: center; }\n@media (max-width: 560px) { .nlb-calc { padding: 24px 20px; } .nlb-calc .nlb-row { flex-direction: column; } .nlb-calc .nlb-answer .nlb-v { font-size: 26px; } }\nbody.color-switch-dark .nlb-calc { background: #151B24; border-color: #2D333B; color: #F1F5F9; }\nbody.color-switch-dark .nlb-calc .nlb-sub { color: #94A3B8; }\nbody.color-switch-dark .nlb-calc input, body.color-switch-dark .nlb-calc select { background: #0B0E13; border-color: #2D333B; color: #F1F5F9; }\nbody.color-switch-dark .nlb-calc .nlb-answer { background: #0B0E13; border-color: #2D333B; }\n<\/style>\n<h3>Sats to USD Converter<\/h3>\n<p class=\"nlb-sub\">Convert between sats, bitcoin, and dollars at the live price. Remember: 1 BTC = 100,000,000 sats.<\/p>\n<div class=\"nlb-row\">\n  <input id=\"conv-amount\" type=\"number\" value=\"100000\" min=\"0\" aria-label=\"Amount\">\n  <select id=\"conv-from\" aria-label=\"From unit\">\n    <option value=\"sats\">sats<\/option>\n    <option value=\"btc\">BTC<\/option>\n    <option value=\"usd\">USD<\/option>\n  <\/select>\n  <select id=\"conv-to\" aria-label=\"To unit\">\n    <option value=\"usd\">USD<\/option>\n    <option value=\"sats\">sats<\/option>\n    <option value=\"btc\">BTC<\/option>\n  <\/select>\n<\/div>\n<div class=\"nlb-answer\">\n  <div class=\"nlb-k\" id=\"conv-label\">100,000 sats equals<\/div>\n  <div class=\"nlb-v\" id=\"conv-result\">\u2013<\/div>\n<\/div>\n<div class=\"nlb-price-row\"><span class=\"nlb-live-dot\"><\/span><span id=\"conv-live\">Fetching live price\u2026<\/span><\/div>\n<p class=\"nlb-fine\">Uses the live bitcoin price. For orientation only, not financial advice.<\/p>\n<script>\n(function(){\n  var price = 81200;\n  var amountEl = document.getElementById('conv-amount'), fromEl = document.getElementById('conv-from'), toEl = document.getElementById('conv-to');\n  function toBTC(v, unit){ if (unit === 'btc') return v; if (unit === 'sats') return v \/ 1e8; return v \/ price; }\n  function fromBTC(b, unit){ if (unit === 'btc') return b; if (unit === 'sats') return b * 1e8; return b * price; }\n  function fmtUnit(v, unit){ if (unit === 'usd') return '$' + v.toLocaleString('en-US', {maximumFractionDigits: 2}); if (unit === 'sats') return Math.round(v).toLocaleString('en-US') + ' sats'; return v.toFixed(8).replace(\/0+$\/,'').replace(\/\\.$\/,'') + ' BTC'; }\n  function update(){\n    var v = parseFloat(amountEl.value) || 0, f = fromEl.value, t = toEl.value;\n    var btc = toBTC(v, f), out = fromBTC(btc, t);\n    document.getElementById('conv-label').textContent = (parseFloat(amountEl.value) || 0).toLocaleString('en-US') + ' ' + f + ' equals';\n    document.getElementById('conv-result').textContent = fmtUnit(out, t);\n  }\n  [amountEl, fromEl, toEl].forEach(function(el){ el.addEventListener('input', update); el.addEventListener('change', update); });\n  fetch('https:\/\/api.coingecko.com\/api\/v3\/simple\/price?ids=bitcoin&vs_currencies=usd')\n    .then(function(r){ return r.json(); })\n    .then(function(j){ if (j && j.bitcoin && j.bitcoin.usd) { price = j.bitcoin.usd; document.getElementById('conv-live').textContent = 'Live price: 1 BTC = $' + Number(price).toLocaleString('en-US'); update(); } })\n    .catch(function(){ document.getElementById('conv-live').textContent = 'Live price unavailable, using $' + price.toLocaleString('en-US') + ' per BTC.'; });\n  document.getElementById('conv-live').textContent = '1 BTC = $' + price.toLocaleString('en-US');\n  update();\n})();\n<\/script>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>One bitcoin equals 100,000,000 satoshis, or sats. Type any amount below to convert between sats, bitcoin, and US dollars at the live market price. Sats to USD Converter Convert between sats, bitcoin, and dollars at the live price. Remember: 1 BTC = 100,000,000 sats. satsBTCUSD USDsatsBTC 100,000 sats equals \u2013 Fetching live price\u2026 Uses the&#8230;<\/p>","protected":false},"author":5,"featured_media":0,"parent":1237,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"class_list":["post-1250","page","type-page","status-publish","hentry"],"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"WUMBOLOVER","author_link":"https:\/\/neverlosebitcoin.com\/fr\/author\/wumbolover\/"},"comment_info":0,"_links":{"self":[{"href":"https:\/\/neverlosebitcoin.com\/fr\/wp-json\/wp\/v2\/pages\/1250","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/neverlosebitcoin.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/neverlosebitcoin.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/neverlosebitcoin.com\/fr\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/neverlosebitcoin.com\/fr\/wp-json\/wp\/v2\/comments?post=1250"}],"version-history":[{"count":1,"href":"https:\/\/neverlosebitcoin.com\/fr\/wp-json\/wp\/v2\/pages\/1250\/revisions"}],"predecessor-version":[{"id":1256,"href":"https:\/\/neverlosebitcoin.com\/fr\/wp-json\/wp\/v2\/pages\/1250\/revisions\/1256"}],"up":[{"embeddable":true,"href":"https:\/\/neverlosebitcoin.com\/fr\/wp-json\/wp\/v2\/pages\/1237"}],"wp:attachment":[{"href":"https:\/\/neverlosebitcoin.com\/fr\/wp-json\/wp\/v2\/media?parent=1250"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}