Skip to content
BoringKit
Business Kit

Business

Tax Calculator

Add or extract VAT, PPN, or sales tax.

Runs locally in your browser. No upload.

Paste input, choose an action, then copy or download the result.

Tax added

Net: $100.00
Tax (11.00%): $11.00
Gross: $111.00

Batch amounts

Paste or edit the source, then run the tool.

Batch tax report

Review the result, then copy or download it.

Result summary

Review the key fields below. Open developer details for the full raw JSON.

Mode
add
Currency
USD
Rounding
cent
Rate Percent
11
Count
3
Net
1600
Developer details
{
  "mode": "add",
  "currency": "USD",
  "rounding": "cent",
  "ratePercent": 11,
  "count": 3,
  "totals": {
    "net": 1600,
    "tax": 176,
    "gross": 1776
  },
  "rows": [
    {
      "amount": 100,
      "net": 100,
      "tax": 11,
      "gross": 111,
      "raw": {
        "ok": true,
        "net": 100,
        "tax": 11,
        "gross": 111
      },
      "formattedGross": "$111.00"
    },
    {
      "amount": 250,
      "net": 250,
      "tax": 27.5,
      "gross": 277.5,
      "raw": {
        "ok": true,
        "net": 250,
        "tax": 27.5,
        "gross": 277.5
      },
      "formattedGross": "$277.50"
    },
    {
      "amount": 1250,
      "net": 1250,
      "tax": 137.5,
      "gross": 1387.5,
      "raw": {
        "ok": true,
        "net": 1250,
        "tax": 137.5,
        "gross": 1387.5
      },
      "formattedGross": "$1,387.50"
    }
  ]
}