Calculator

Basic arithmetic • %
বাংলা
Ad

Calculator · How to use · FAQ · Related tools

Calculate

Ad

Allowed: digits, + − × ÷ * / ( ) . and % (as percent). Use parentheses for order of operations.

How to use

  1. Type an expression in the box. Example: (12+7)/3*2.
  2. Use % as percent. Example: 12% * 200 → 24 (internally 12/100).
  3. Press Enter to evaluate. Use Shift+Enter to insert a newline.
  4. Click Copy result to copy the output; use Clear to reset.
  5. × and ÷ are supported— they are normalized to * and /.

Tips

FAQ

Does this work offline?

Yes. After the first load, it runs in your browser.

Is my input tracked?

No. Nothing is sent anywhere—everything stays in your browser.

How does % work?

A number followed by % is treated as a fraction of 1. Example: 12% * 200 is (12/100) * 200 = 24.

Which operations are supported?

+ − × ÷ (or * and /), decimals, and parentheses for order of operations.

Why do I see long decimals sometimes?

This uses floating-point math (like most calculators in browsers), which can show tiny rounding artifacts for some values.