<?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/%EA%B5%AC%EC%A7%81%EA%B8%89%EC%97%AC/</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/%EA%B5%AC%EC%A7%81%EA%B8%89%EC%97%AC/index.xml" rel="self" type="application/rss+xml"/><item><title>실업급여 계산기 — 1일 수령액·소정급여일수·총액 (2026)</title><link>https://planfully.ai.kr/tools/unemployment/</link><pubDate>Wed, 22 Jul 2026 00:00:00 +0900</pubDate><guid>https://planfully.ai.kr/tools/unemployment/</guid><description>&lt;p&gt;이직 전 급여와 &lt;strong&gt;나이·고용보험 가입기간&lt;/strong&gt;을 넣으면 실업급여(구직급여) 1일 수령액과 받는 기간, 총 예상액을 계산합니다. (2026년 상한 66,000원·하한 63,104원 기준)&lt;/p&gt;
&lt;div class="pf-tool" style="max-width:520px;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="ue-pay" inputmode="numeric" placeholder="예: 300" style="width:100%;padding:12px;border:2px solid #ccc;border-radius:10px;font-size:16px;box-sizing:border-box;"&gt;&lt;/label&gt;
 &lt;div style="display:flex;gap:10px;margin-top:12px;flex-wrap:wrap;"&gt;
 &lt;label style="flex:1 1 45%;"&gt;&lt;span style="display:block;font-weight:700;margin-bottom:6px;"&gt;이직 당시 나이&lt;/span&gt;
 &lt;select id="ue-age" style="width:100%;padding:12px;border:2px solid #ccc;border-radius:10px;font-size:16px;box-sizing:border-box;background:#fff;"&gt;
 &lt;option value="0"&gt;만 50세 미만&lt;/option&gt;
 &lt;option value="1"&gt;만 50세 이상 · 장애인&lt;/option&gt;
 &lt;/select&gt;&lt;/label&gt;
 &lt;label style="flex:1 1 45%;"&gt;&lt;span style="display:block;font-weight:700;margin-bottom:6px;"&gt;고용보험 가입기간&lt;/span&gt;
 &lt;select id="ue-yr" style="width:100%;padding:12px;border:2px solid #ccc;border-radius:10px;font-size:16px;box-sizing:border-box;background:#fff;"&gt;
 &lt;option value="0"&gt;1년 미만&lt;/option&gt;
 &lt;option value="1"&gt;1년~3년&lt;/option&gt;
 &lt;option value="2"&gt;3년~5년&lt;/option&gt;
 &lt;option value="3"&gt;5년~10년&lt;/option&gt;
 &lt;option value="4"&gt;10년 이상&lt;/option&gt;
 &lt;/select&gt;&lt;/label&gt;
 &lt;/div&gt;
 &lt;button id="ue-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="ue-out" style="display:none;margin-top:20px;"&gt;
 &lt;div style="text-align:center;padding:20px;border-radius:12px;background:#ecfdf5;"&gt;
 &lt;div style="font-size:15px;color:#555;"&gt;총 예상 실업급여&lt;/div&gt;
 &lt;div id="ue-big" style="font-size:34px;font-weight:800;color:#047857;line-height:1.2;"&gt;&lt;/div&gt;
 &lt;/div&gt;
 &lt;table style="width:100%;margin-top:12px;font-size:14.5px;border-collapse:collapse;"&gt;&lt;tbody id="ue-rows"&gt;&lt;/tbody&gt;&lt;/table&gt;
 &lt;div style="font-size:12px;color:#6b7280;margin-top:8px;"&gt;※ 1일 구직급여 = 이직 전 1일 평균임금의 60% (2026년 상한 66,000원·하한 63,104원). 소정급여일수는 나이·가입기간별. 실제 수급은 &lt;b&gt;이직 사유(비자발적)&lt;/b&gt;·적극적 구직활동 등 요건 충족 시에만 지급돼요. 정확한 금액은 고용24(고용보험) 사이트에서 확인하세요.&lt;/div&gt;
 &lt;/div&gt;
&lt;/div&gt;
&lt;style&gt;#ue-rows td{padding:8px 6px;border-bottom:1px solid #eee;}#ue-rows td:last-child{text-align:right;font-weight:700;}#ue-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){if(w&gt;=100000000)return (w/100000000).toFixed(2).replace(/\.?0+$/,'')+'억원';return Math.round(w).toLocaleString()+'원';}
// 소정급여일수 [나이&lt;50, 나이&gt;=50][가입기간 index]
var DAYS=[[120,150,180,210,240],[120,180,210,240,270]];
var CAP=66000, FLOOR=63104; // 2026 1일 상·하한
$('ue-go').onclick=function(){
 var pay=(parseFloat($('ue-pay').value)||0)*10000;
 if(!pay){alert('이직 전 월평균 급여를 입력해 주세요');return;}
 var age=parseInt($('ue-age').value), yr=parseInt($('ue-yr').value);
 var avgDaily=pay/30; // 1일 평균임금
 var raw=avgDaily*0.6; // 60%
 var daily=Math.min(Math.max(raw,FLOOR),CAP); // 상·하한 적용
 var sday=DAYS[age][yr];
 var total=daily*sday;
 $('ue-big').textContent=won(total);
 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;';}
 var capNote = raw&gt;CAP?' (상한 적용)':(raw&lt;FLOOR?' (하한 적용)':'');
 $('ue-rows').innerHTML=
 row('1일 평균임금', won(avgDaily))
 +row('1일 구직급여 (평균임금×60%)'+capNote, won(daily))
 +row('소정급여일수', sday+'일 (약 '+Math.round(sday/30*10)/10+'개월)')
 +row('총 예상 수령액', won(total), true)
 +row('월 환산(30일 기준)', won(daily*30));
 $('ue-out').style.display='block';
};
})();
&lt;/script&gt;
&lt;h2 id="실업급여-이렇게-정해져요"&gt;실업급여, 이렇게 정해져요
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;1일 구직급여&lt;/strong&gt; = 이직 전 1일 평균임금 × &lt;strong&gt;60%&lt;/strong&gt;. 단 2026년 기준 &lt;strong&gt;상한 66,000원 / 하한 63,104원&lt;/strong&gt; 안에서.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;소정급여일수&lt;/strong&gt;(받는 기간)는 나이와 고용보험 가입기간에 따라 &lt;strong&gt;120일~270일&lt;/strong&gt;.
&lt;ul&gt;
&lt;li&gt;만 50세 미만: 120 / 150 / 180 / 210 / 240일&lt;/li&gt;
&lt;li&gt;만 50세 이상·장애인: 120 / 180 / 210 / 240 / 270일&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;받을 수 있는 조건&lt;/strong&gt;: 비자발적 이직(권고사직·계약만료 등), 고용보험 180일 이상 가입, 적극적 재취업 활동. 자발적 퇴사는 원칙적으로 제외돼요.&lt;/li&gt;
&lt;li&gt;정확한 신청·수급은 &lt;a class="link" href="https://www.work24.go.kr" target="_blank" rel="noopener"
 &gt;고용24&lt;/a&gt; 또는 고용센터에서 확인하세요.&lt;/li&gt;
&lt;/ul&gt;</description></item></channel></rss>