单独计税 并入所得 计算 反推税前月薪 反推税前月薪 ≈ ¥{{ reversedSalary.toFixed(2) }} {{ reverseError }}
个人所得税计算 请在左侧输入参数后点击“计算”
工资薪金
按综合所得税率计税
年终奖
支持单独/并入计税
起征点
5000 元/月
反推工资
按目标月个税求税前
年度税后总收入 ¥{{ yearlyNet.toFixed(2) }}
¥{{ netSalary.toFixed(2) }}
月实发工资
¥{{ monthlyTax.toFixed(2) }}
月个税
¥{{ yearlyTax.toFixed(2) }}
年度总税额
{{ effectiveTaxRate.toFixed(2) }}%
实际税率
¥{{ reversedSalary.toFixed(2) }}
反推税前月薪

计算公式与过程

1. 月应纳税所得额:
{{ salary }} - {{ insurance }} - {{ specialDeduction }} - {{ threshold }} = {{ monthlyTaxableIncome.toFixed(2) }} 元
2. 年应纳税所得额(工资):
{{ monthlyTaxableIncome.toFixed(2) }} × 12 = {{ annualTaxableSalary.toFixed(2) }} 元
3. 年终奖计税(单独计税):
年终奖额:{{ bonus }} 元
月均:{{ (bonus / 12).toFixed(2) }} 元 → 适用税率:{{ bonusRateInfo.rate }}%,速算扣除:{{ bonusRateInfo.deduction }}
{{ bonus }} × {{ bonusRateInfo.rate }}% - {{ bonusRateInfo.deduction }} = {{ bonusTax.toFixed(2) }} 元
3. 年终奖计税(并入所得):
总应纳税所得:{{ annualTaxableSalary.toFixed(2) }} + {{ bonus }} = {{ (annualTaxableSalary + bonus).toFixed(2) }} 元
{{ bonus > 0 ? '4' : '3' }}. 工资薪金个税计算:
应纳税所得:{{ annualTaxableSalary.toFixed(2) }} 元
适用税率:{{ salaryRateInfo.rate }}%,速算扣除:{{ salaryRateInfo.deduction }}
{{ annualTaxableSalary.toFixed(2) }} × {{ salaryRateInfo.rate }}% - {{ salaryRateInfo.deduction }} = {{ annualSalaryTax.toFixed(2) }} 元
{{ bonus > 0 ? '5' : '4' }}. 年度总税额:
{{ annualSalaryTax.toFixed(2) }} + {{ bonusTax.toFixed(2) }} = {{ yearlyTax.toFixed(2) }} 元
{{ bonus > 0 ? '6' : '5' }}. 月实发工资:
{{ salary }} - {{ insurance }} - {{ monthlyTax.toFixed(2) }} = {{ netSalary.toFixed(2) }} 元
{{ bonus > 0 ? '7' : '6' }}. 年度税后总收入:
({{ salary }} × 12 + {{ bonus }}) - {{ yearlyTax.toFixed(2) }} - ({{ insurance }} × 12) = {{ yearlyNet.toFixed(2) }} 元

个人所得税税率表 (综合所得适用)

说明: 起征点为5000元/月 (60000元/年)。本计算器结果仅供参考, 实际缴税以税务机关为准。