Skip to content

Calculator

Calculator – A calculator app that executes a given formula and returns a result. This app can execute basic operations as well as other operations like modulus, exponentiation, bitwise OR, bitwise AND, left shift, and right shift. Provide the formula and the app will execute it and return a result. The formula needs to be URL-escaped. Here are some examples – formula: 1+2 – /?formula=1%2B2 — formula: 2*3 – /?formula=2%2A3 — formula: 3^4 – /?formula=3%5E4 — and so on… .