Skip to content

Introduction

Type your expressions in the editor and the answer is calculated and shown instantly on the right.

1 + 1
2

Each line computes one expression. Multiple expressions on one line will not work.

1 + 1 12 meters to cm
1,400 cm
1 + 1
2
12 meters to cm
1,200 cm

Words or strings are case-insensitive except variable name.

12 mEteRs to CeNtImeTer
1,200 CeNtImeTer

Popular short forms of units will work. Also, plural forms will work in most cases and will be refined over time.

10 gram to kilogram
0.01 kilogram
10 gram to kg
0.01 kg
10 grams to kg
0.01 kg

You can enter numbers with commas in them.

123,456,789
123,456,789
123456789
123,456,789

It is recommended to use brackets to override the default precedence. Check the following example, where one expression gives different results with and without brackets.

10 + 20 * 3
70
(10 + 20) * 3
90

Hissab also supports functions which provides quick way to get complex calculations done in simple syntax.

Functions take on a fix or variable number of parameters as input and output the results using those inputs.

Its syntax is:

function name(input1, input2, input3,…)’.

Each input can be an expression in itself.

sum(12,23,52,65)
152