Decimal64
Decimal64 is a decimal floating-point format defined by the IEEE 754 standard as part of the decimal floating-point family. It uses 64 bits to represent a decimal number with up to 16 significant digits and a decimal exponent, enabling direct decimal arithmetic with predictable rounding.
In decimal64, a finite value is represented by a sign, a coefficient (significand) with up to 16
Decimal64 is one of three decimal floating-point formats standardized by IEEE 754: decimal32, decimal64, and decimal128.
Implementation can be in hardware through decimal floating-point units or in software libraries; support varies by
See also: decimal32, decimal128, IEEE 754, decimal arithmetic, financial computing.
---