9223372036854775807
9223372036854775807, commonly written as 9,223,372,036,854,775,807, is the maximum value of a signed 64-bit integer in two's complement representation. It equals 2^63 - 1 and serves as the positive bound for 64-bit signed integers in many programming environments.
In two's complement systems, the 64-bit signed integer range runs from -2^63 to 2^63 - 1, i.e., from
This value is widely used as the upper bound for positive values in programming languages and libraries
For comparison, the corresponding unsigned 64-bit maximum is 18446744073709551615, the full range of 64-bit unsigned integers,
See also: powers of two, 2^63 - 1, 2^64 - 1, int64, long long, Long.MAX_VALUE, INT64_MAX.