Hexadecimal Arithmetic Calculator — Fórmula
## Hexadecimal Arithmetic
### Hex Addition/Subtraction
Hex arithmetic works like decimal but in base-16. This calculator accepts decimal inputs (enter the decimal equivalent of your hex number) and displays results in decimal.
### Conversions
- Hex FF = Decimal 255
- Hex 10 = Decimal 16
- Hex A = Decimal 10
To convert between hex and decimal, use the Hex to Decimal converter.
### Hex Addition/Subtraction
Hex arithmetic works like decimal but in base-16. This calculator accepts decimal inputs (enter the decimal equivalent of your hex number) and displays results in decimal.
### Conversions
- Hex FF = Decimal 255
- Hex 10 = Decimal 16
- Hex A = Decimal 10
To convert between hex and decimal, use the Hex to Decimal converter.
Ejemplo Resuelto
Operations on 255 (FF in hex) and 16 (10 in hex).
- 255 + 16 = 271 (hex: FF + 10 = 10F)
- 255 - 16 = 239 (hex: FF - 10 = EF)
- 255 × 16 = 4080 (hex: FF × 10 = FF0)
- 255 / 16 = 15.9375
- 255 mod 16 = 15 (hex: F)