<?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%A3%BC%EA%B8%89-%EA%B3%84%EC%82%B0/</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%A3%BC%EA%B8%89-%EA%B3%84%EC%82%B0/index.xml" rel="self" type="application/rss+xml"/><item><title>주휴수당·시급 계산기 — 주급·월급 환산 (2026 최저 10,320원)</title><link>https://planfully.ai.kr/tools/hourly-wage/</link><pubDate>Wed, 22 Jul 2026 00:00:00 +0900</pubDate><guid>https://planfully.ai.kr/tools/hourly-wage/</guid><description>&lt;p&gt;시급과 &lt;strong&gt;주 근로시간&lt;/strong&gt;을 넣으면 주휴수당과 주급·월급 환산액을 계산합니다. 2026년 최저임금은 &lt;strong&gt;시간당 10,320원&lt;/strong&gt;이에요.&lt;/p&gt;
&lt;div class="pf-tool" style="max-width:520px;margin:0 auto;"&gt;
 &lt;div style="display:flex;gap:10px;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;input type="tel" id="hw-rate" inputmode="numeric" value="10320" style="width:100%;padding:12px;border:2px solid #ccc;border-radius:10px;font-size:16px;box-sizing:border-box;"&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;input type="tel" id="hw-hrs" inputmode="decimal" placeholder="예: 20" 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&gt;
 &lt;button id="hw-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="hw-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="hw-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="hw-rows"&gt;&lt;/tbody&gt;&lt;/table&gt;
 &lt;div id="hw-tip" style="margin-top:12px;font-size:13.5px;"&gt;&lt;/div&gt;
 &lt;div style="font-size:12px;color:#6b7280;margin-top:8px;"&gt;※ 주휴수당 = (주 근로시간 ÷ 40) × 8 × 시급, &lt;b&gt;주 15시간 이상&lt;/b&gt; 근무 시 지급. 월급 환산은 주급 × 4.345주(=52.14주/12개월). 4대보험·세금 공제 전 금액이에요.&lt;/div&gt;
 &lt;/div&gt;
&lt;/div&gt;
&lt;style&gt;#hw-rows td{padding:8px 6px;border-bottom:1px solid #eee;}#hw-rows td:last-child{text-align:right;font-weight:700;}#hw-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()+'원';}
var MIN=10320;
$('hw-go').onclick=function(){
 var rate=parseFloat($('hw-rate').value)||0;
 var hrs=parseFloat($('hw-hrs').value)||0;
 if(!rate||!hrs){alert('시급과 주 근로시간을 입력해 주세요');return;}
 var weekWork=rate*hrs;
 var holiHours = hrs&gt;=15 ? Math.min(hrs,40)/40*8 : 0;
 var holiPay=holiHours*rate;
 var weekTotal=weekWork+holiPay;
 var month=weekTotal*4.345;
 $('hw-big').textContent=won(month);
 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;';}
 $('hw-rows').innerHTML=
 row('주 근로수당 ('+hrs+'시간)', won(weekWork))
 +row('주휴수당'+(hrs&gt;=15?' ('+holiHours.toFixed(1)+'시간분)':' (주15시간 미만=없음)'), won(holiPay))
 +row('주급 (주휴 포함)', won(weekTotal), true)
 +row('월급 환산 (×4.345주)', won(month))
 +row('연봉 환산', won(month*12));
 var tips=[];
 if(rate&lt;MIN) tips.push('&lt;div style="padding:10px 12px;background:#fef2f2;border-radius:8px;color:#b91c1c;"&gt;⚠️ 시급이 2026년 최저임금(10,320원)보다 낮아요. 최저임금 위반일 수 있어요.&lt;/div&gt;');
 if(hrs&gt;=15) tips.push('&lt;div style="padding:10px 12px;background:#fffbeb;border-radius:8px;"&gt;💡 주 15시간 이상이라 &lt;b&gt;주휴수당&lt;/b&gt;을 받을 수 있어요. 안 주면 임금체불이에요.&lt;/div&gt;');
 else tips.push('&lt;div style="padding:10px 12px;background:#fffbeb;border-radius:8px;"&gt;💡 주 15시간 미만은 주휴수당이 없어요. 15시간만 넘겨도 주휴수당이 붙어요.&lt;/div&gt;');
 if(hrs&gt;40) tips.push('&lt;div style="padding:10px 12px;background:#eff6ff;border-radius:8px;"&gt;📌 주 40시간 초과분은 &lt;b&gt;연장근로수당(1.5배)&lt;/b&gt; 대상이에요(5인 이상 사업장). 이 계산기엔 미반영.&lt;/div&gt;');
 $('hw-tip').innerHTML=tips.join('');
 $('hw-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;이란: 1주 동안 정해진 근무일을 다 채우면, &lt;strong&gt;일하지 않은 하루치 임금&lt;/strong&gt;을 더 주는 제도예요.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;조건&lt;/strong&gt;: 1주 &lt;strong&gt;소정근로시간 15시간 이상&lt;/strong&gt; + 그 주의 소정근로일을 개근.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;계산&lt;/strong&gt;: &lt;code&gt;주휴수당 = (주 근로시간 ÷ 40) × 8 × 시급&lt;/code&gt;. 주 40시간이면 8시간분, 주 20시간이면 4시간분이에요.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;2026년 최저임금&lt;/strong&gt;: 시간당 &lt;strong&gt;10,320원&lt;/strong&gt;(2025년보다 2.9% 인상). 주 40시간+주휴 기준 월 약 215만 원.&lt;/li&gt;
&lt;li&gt;알바·파트타임도 주휴수당 대상이에요. 안 주면 임금체불로 신고할 수 있어요.&lt;/li&gt;
&lt;/ul&gt;</description></item></channel></rss>