int64
Int64 is a 64-bit signed integer data type used in many programming languages and platforms. It occupies eight bytes of memory and typically uses two's complement representation, which provides a range that covers negative and positive values. The value range is -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807. An unsigned 64-bit variant exists in most ecosystems, often called UInt64, spanning 0 to 18,446,744,073,709,551,615.
Naming and availability vary by language. In C#, the 64-bit signed integer is System.Int64 and is commonly
Int64 values are used for large counts, indices, memory offsets, file sizes, timestamps, and other quantities
Overflow behavior is language-specific: some languages wrap around on overflow, others may throw an exception or