<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>면적 변환 on 계획대로 느긋하게</title><link>https://planfully.ai.kr/tags/%EB%A9%B4%EC%A0%81-%EB%B3%80%ED%99%98/</link><description>Recent content in 면적 변환 on 계획대로 느긋하게</description><generator>Hugo -- gohugo.io</generator><language>ko-kr</language><lastBuildDate>Wed, 22 Jul 2026 00:00:00 +0900</lastBuildDate><atom:link href="https://planfully.ai.kr/tags/%EB%A9%B4%EC%A0%81-%EB%B3%80%ED%99%98/index.xml" rel="self" type="application/rss+xml"/><item><title>평수 ↔ ㎡ 변환기 — 평 제곱미터 자동 계산</title><link>https://planfully.ai.kr/tools/pyeong/</link><pubDate>Wed, 22 Jul 2026 00:00:00 +0900</pubDate><guid>https://planfully.ai.kr/tools/pyeong/</guid><description>&lt;p&gt;평수를 **제곱미터(㎡)**로, 제곱미터를 &lt;strong&gt;평수&lt;/strong&gt;로 바로 변환합니다. (1평 = 3.3058㎡)&lt;/p&gt;
&lt;div class="pf-tool" style="max-width:460px;margin:0 auto;"&gt;
 &lt;label style="display:block;"&gt;&lt;span style="display:block;font-weight:700;margin-bottom:6px;"&gt;평 (평수)&lt;/span&gt;&lt;input type="tel" id="py-p" inputmode="decimal" placeholder="예: 34" style="width:100%;padding:14px;border:2px solid #ccc;border-radius:10px;font-size:18px;box-sizing:border-box;"&gt;&lt;/label&gt;
 &lt;div style="text-align:center;color:#059669;font-size:22px;margin:8px 0;"&gt;⇅&lt;/div&gt;
 &lt;label style="display:block;"&gt;&lt;span style="display:block;font-weight:700;margin-bottom:6px;"&gt;제곱미터 (㎡)&lt;/span&gt;&lt;input type="tel" id="py-m" inputmode="decimal" placeholder="예: 112.4" style="width:100%;padding:14px;border:2px solid #ccc;border-radius:10px;font-size:18px;box-sizing:border-box;"&gt;&lt;/label&gt;
 &lt;div id="py-out" style="margin-top:16px;text-align:center;padding:18px;border-radius:12px;background:#ecfdf5;font-size:17px;color:#047857;font-weight:700;min-height:24px;"&gt;&lt;/div&gt;
 &lt;div id="py-quick" style="margin-top:14px;"&gt;&lt;/div&gt;
 &lt;div style="font-size:12px;color:#6b7280;margin-top:10px;"&gt;※ 1평 = 3.305785㎡ (= 400/121). 아파트 분양·등기부 면적은 ㎡로 표기해요. "국민평형 84㎡ = 약 25.4평(전용면적)".&lt;/div&gt;
&lt;/div&gt;
&lt;script&gt;
(function(){
var $=function(id){return document.getElementById(id);};
var K=3.3057851;
var p=$('py-p'), m=$('py-m'), out=$('py-out');
function fmt(n){return (Math.round(n*100)/100).toLocaleString();}
p.addEventListener('input',function(){
 var v=parseFloat(p.value);
 if(isNaN(v)){m.value='';out.textContent='';return;}
 var mm=v*K; m.value=fmt(mm);
 out.textContent=fmt(v)+'평 = '+fmt(mm)+'㎡';
});
m.addEventListener('input',function(){
 var v=parseFloat(m.value);
 if(isNaN(v)){p.value='';out.textContent='';return;}
 var pp=v/K; p.value=fmt(pp);
 out.textContent=fmt(v)+'㎡ = '+fmt(pp)+'평';
});
// 자주 찾는 평형 빠른 표
var rows=[[59,'전용 59㎡'],[74,'전용 74㎡'],[84,'국민평형 84㎡'],[101,'전용 101㎡'],[114,'전용 114㎡']];
$('py-quick').innerHTML='&lt;div style="font-size:13px;color:#555;margin-bottom:6px;font-weight:700;"&gt;자주 찾는 아파트 평형&lt;/div&gt;'+
 rows.map(function(r){return '&lt;div style="display:flex;justify-content:space-between;padding:6px 4px;border-bottom:1px solid #eee;font-size:14px;"&gt;&lt;span&gt;'+r[1]+'&lt;/span&gt;&lt;b&gt;약 '+fmt(r[0]/K)+'평&lt;/b&gt;&lt;/div&gt;';}).join('');
})();
&lt;/script&gt;
&lt;h2 id="평수-변환-이것만-알면-돼요"&gt;평수 변환, 이것만 알면 돼요
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;1평 = 3.3058㎡&lt;/strong&gt; (정확히는 400/121㎡). 반대로 &lt;strong&gt;1㎡ = 0.3025평&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;빠른 암산&lt;/strong&gt;: ㎡에 &lt;strong&gt;0.3&lt;/strong&gt;을 곱하면 대략 평수예요. (84㎡ × 0.3 ≈ 25평)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;전용면적 vs 공급면적&lt;/strong&gt;: 아파트 &amp;ldquo;84㎡&amp;ldquo;는 보통 &lt;strong&gt;전용면적&lt;/strong&gt;(약 25.4평)이고, 분양 광고의 &amp;ldquo;34평&amp;quot;은 발코니·공용부 포함 &lt;strong&gt;공급면적&lt;/strong&gt;인 경우가 많아 서로 달라요.&lt;/li&gt;
&lt;li&gt;등기부·분양계약서는 ㎡가 공식 단위예요.&lt;/li&gt;
&lt;/ul&gt;</description></item></channel></rss>