INT16 - 16-Bit Signed Integer

Compact 16-bit signed integer: audio samples, embedded systems, and sensor data

Bit Layout

A 16-bit integer uses 16 bits to store a whole number. For INT16 (signed), the most significant bit is the sign bit using two's complement. For the unsigned variant, see UINT16.

Overview

16-bit integers are widely used where the range of ±32,767 or 0–65,535 is sufficient and memory conservation matters. They are the short type in C/C++ and Java.

Common Uses

Audio connection When you listen to a CD or most digital audio, each sample is an INT16. The 65,536 possible values give enough resolution that the quantization noise is below human hearing threshold at normal listening levels.

Range & Properties

Key Bit Patterns

Interactive Bit Visualizer

Click any bit to flip it. See both signed and unsigned interpretations.

Format Comparison

Where INT16 Is Used