<?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/%EC%B0%A8%EB%A0%B9-%ED%95%A0%EC%9D%B8/</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/%EC%B0%A8%EB%A0%B9-%ED%95%A0%EC%9D%B8/index.xml" rel="self" type="application/rss+xml"/><item><title>자동차세·취득세 계산기 — 배기량·차령별 연세액</title><link>https://planfully.ai.kr/tools/car-tax/</link><pubDate>Wed, 22 Jul 2026 00:00:00 +0900</pubDate><guid>https://planfully.ai.kr/tools/car-tax/</guid><description>&lt;p&gt;배기량과 **차령(등록 후 연수)**을 넣으면 연간 자동차세(지방교육세 포함)를, 취득가액으로 취득세를 계산합니다. (비영업용 승용차 기준)&lt;/p&gt;
&lt;div class="pf-tool" style="max-width:500px;margin:0 auto;"&gt;
 &lt;div style="font-weight:700;color:#059669;"&gt;🚗 자동차세 (연간)&lt;/div&gt;
 &lt;div style="display:flex;gap:10px;margin-top:8px;flex-wrap:wrap;"&gt;
 &lt;label style="flex:1 1 45%;"&gt;&lt;span style="display:block;font-size:13px;color:#555;margin-bottom:4px;"&gt;배기량 (cc)&lt;/span&gt;&lt;input type="tel" id="ct-cc" inputmode="numeric" placeholder="예: 1998" style="width:100%;padding:11px;border:2px solid #ccc;border-radius:8px;box-sizing:border-box;"&gt;&lt;/label&gt;
 &lt;label style="flex:1 1 45%;"&gt;&lt;span style="display:block;font-size:13px;color:#555;margin-bottom:4px;"&gt;차령 (등록 후 연수)&lt;/span&gt;&lt;input type="tel" id="ct-age" inputmode="numeric" placeholder="예: 3" style="width:100%;padding:11px;border:2px solid #ccc;border-radius:8px;box-sizing:border-box;"&gt;&lt;/label&gt;
 &lt;/div&gt;
 &lt;label style="display:flex;align-items:center;gap:8px;margin-top:8px;font-size:14px;"&gt;&lt;input type="checkbox" id="ct-ev" style="width:17px;height:17px;"&gt; 전기차·수소차 (정액 13만원)&lt;/label&gt;
 &lt;div style="font-weight:700;color:#2563eb;margin-top:16px;"&gt;💰 취득세 (구입 시 1회)&lt;/div&gt;
 &lt;label style="display:block;margin-top:8px;"&gt;&lt;span style="display:block;font-size:13px;color:#555;margin-bottom:4px;"&gt;차량 취득가액 (만원)&lt;/span&gt;&lt;input type="tel" id="ct-price" inputmode="numeric" placeholder="예: 3000" style="width:100%;padding:11px;border:2px solid #ccc;border-radius:8px;box-sizing:border-box;"&gt;&lt;/label&gt;
 &lt;label style="display:flex;align-items:center;gap:8px;margin-top:8px;font-size:14px;"&gt;&lt;input type="checkbox" id="ct-light" style="width:17px;height:17px;"&gt; 경차 (취득세 4%)&lt;/label&gt;
 &lt;button id="ct-go" style="width:100%;margin-top:16px;padding:14px;border:0;border-radius:10px;background:#059669;color:#fff;font-size:17px;font-weight:700;cursor:pointer;"&gt;계산하기&lt;/button&gt;
 &lt;div id="ct-out" style="display:none;margin-top:20px;"&gt;
 &lt;table style="width:100%;font-size:14.5px;border-collapse:collapse;"&gt;&lt;tbody id="ct-rows"&gt;&lt;/tbody&gt;&lt;/table&gt;
 &lt;div style="font-size:12px;color:#6b7280;margin-top:8px;"&gt;※ 자동차세=배기량×cc당 세율(≤1000cc 80원·≤1600cc 140원·초과 200원)+지방교육세 30%. 차령 3년차부터 매년 5%씩 최대 50% 할인. 취득세=취득가액×7%(경차 4%·전기차 감면 별도). 연납 신청 시 자동차세 할인.&lt;/div&gt;
 &lt;/div&gt;
&lt;/div&gt;
&lt;style&gt;#ct-rows td{padding:8px 6px;border-bottom:1px solid #eee;}#ct-rows td:last-child{text-align:right;font-weight:700;}#ct-rows tr.hl td{color:#047857;border-top:2px solid #059669;}&lt;/style&gt;
&lt;script&gt;
(function(){
var $=function(id){return document.getElementById(id);};
function won(w){return Math.round(w).toLocaleString()+'원';}
$('ct-go').onclick=function(){
 var cc=parseInt($('ct-cc').value)||0;
 var age=parseInt($('ct-age').value)||0;
 var ev=$('ct-ev').checked;
 var price=(parseFloat($('ct-price').value)||0)*10000;
 var light=$('ct-light').checked;
 var rows='';
 function row(l,v,hl){return '&lt;tr'+(hl?' class="hl"':'')+'&gt;&lt;td style="color:#555;"&gt;'+l+'&lt;/td&gt;&lt;td&gt;'+v+'&lt;/td&gt;&lt;/tr&gt;';}
 // 자동차세
 if(ev){
 var evTax=130000*1.3;
 rows+=row('자동차세 (전기·수소차 정액)', won(130000))
 + row('지방교육세 (30%)', won(130000*0.3))
 + row('연 자동차세 합계', won(evTax), true);
 } else if(cc&gt;0){
 var per = cc&lt;=1000?80:(cc&lt;=1600?140:200);
 var base=cc*per;
 var edu=base*0.3;
 var full=base+edu;
 // 차령 할인: 3년차 5%, 최대 50%(12년차)
 var disc=age&gt;=3?Math.min((age-2)*5,50):0;
 var final=full*(1-disc/100);
 rows+=row('cc당 세율', per+'원 × '+cc.toLocaleString()+'cc')
 + row('자동차세 (본세)', won(base))
 + row('지방교육세 (30%)', won(edu))
 + row('차령 할인', disc+'% (차령 '+age+'년)')
 + row('연 자동차세 (할인 후)', won(final), true);
 }
 // 취득세
 if(price&gt;0){
 var rate=light?0.04:0.07;
 rows+=row('취득세율', (rate*100)+'%'+(light?' (경차)':''))
 + row('취득세 (구입 시 1회)', won(price*rate), true);
 }
 $('ct-rows').innerHTML=rows||'&lt;tr&gt;&lt;td&gt;배기량 또는 취득가액을 입력해 주세요&lt;/td&gt;&lt;/tr&gt;';
 $('ct-out').style.display='block';
};
})();
&lt;/script&gt;
&lt;h2 id="자동차세-이렇게-붙어요"&gt;자동차세, 이렇게 붙어요
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;자동차세(연간)&lt;/strong&gt; = 배기량 × cc당 세율 + 지방교육세(30%).
&lt;ul&gt;
&lt;li&gt;1,000cc 이하: 80원/cc · 1,600cc 이하: 140원/cc · 1,600cc 초과: 200원/cc&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;차령 할인&lt;/strong&gt;: 등록 후 3년차부터 매년 5%씩 깎여서 &lt;strong&gt;최대 50%&lt;/strong&gt;(12년차 이상)까지 줄어요.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;연납 할인&lt;/strong&gt;: 1월에 1년치를 한 번에 내면 일정액을 할인해줘요(매년 할인율 변동).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;취득세(구입 시 1회)&lt;/strong&gt;: 취득가액의 &lt;strong&gt;7%&lt;/strong&gt;(경차 4%). 전기차·다자녀 등은 감면이 있어요.&lt;/li&gt;
&lt;li&gt;전기·수소차는 배기량이 없어 &lt;strong&gt;정액 13만원&lt;/strong&gt;(비영업용)이에요.&lt;/li&gt;
&lt;/ul&gt;</description></item></channel></rss>