Almost never seen without its companion 'u' in English, lowercase 'q' is the seventeenth letter of the Latin alphabet and one of the least frequently used, appearing in roughly 0.1 % of characters in typical English corpora. Its near-obligatory pairing with 'u' — as in 'queen', 'quiet', 'quote' — is a spelling convention inherited from Latin, where 'qu' represented the labialized velar stop /kʷ/. In ASCII, 'q' sits at code point 113 (0x71), exactly 32 above its uppercase counterpart 'Q' at 81 (0x51), preserving the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs. Despite its rarity in general text, 'q' carries outsized cultural visibility through loanwords, proper nouns, and specialized notation systems.
// Queue with STL#include <queue>std::queue<int> q;q.push(1); // enqueueq.push(2);int front = q.front(); // peek: 1q.pop(); // dequeue
Keyboard and gaming convention: The letter 'q' anchors the top-left alphabetic position on QWERTY keyboards — the layout so named because of its opening key sequence. In many video games and desktop applications, 'q' is mapped as a hotkey for quitting, cycling abilities, or queuing actions, largely because of its convenient left-hand reach near modifier keys.
Printf and format specifiers: In some C-library implementations and POSIX extensions, the 'q' length modifier has historically been used as a synonym for 'll' (long long) in printf-style formatting — e.g., %qd for a 64-bit integer. This usage is non-standard and platform-specific (notably BSD-derived systems); portable code should prefer %lld as specified by the C standard.
Linguistic outlier in English: The 'qu' digraph is so dominant in English that words containing 'q' without a following 'u' — such as 'qi', 'qat', 'qoph', and 'qintar' — are almost exclusively borrowings from Arabic, Chinese, or Hebrew. This makes 'q' the only English consonant whose combinatory behavior is effectively restricted to a single successor letter in native vocabulary, a constraint that has notable implications for crossword construction and Scrabble strategy.
Diacritical variants: While 'q' has a comparatively small diacritical family, q̇ (dot above) appears in some transliteration schemes for Semitic languages, and ꝗ (stroke) was used in medieval Latin manuscripts as an abbreviation for 'que' or 'quod'. In Azerbaijani and several Turkic Latin orthographies, 'q' represents a uvular stop /q/ and functions as a standard letter rather than part of a digraph — a role quite different from its English behavior.
Keyboard and gaming convention: The letter 'q' anchors the top-left alphabetic position on QWERTY keyboards — the layout so named because of its opening key sequence. In many video games and desktop applications, 'q' is mapped as a hotkey for quitting, cycling abilities, or queuing actions, largely because of its convenient left-hand reach near modifier keys.
Printf and format specifiers: In some C-library implementations and POSIX extensions, the 'q' length modifier has historically been used as a synonym for 'll' (long long) in printf-style formatting — e.g., %qd for a 64-bit integer. This usage is non-standard and platform-specific (notably BSD-derived systems); portable code should prefer %lld as specified by the C standard.
Linguistic outlier in English: The 'qu' digraph is so dominant in English that words containing 'q' without a following 'u' — such as 'qi', 'qat', 'qoph', and 'qintar' — are almost exclusively borrowings from Arabic, Chinese, or Hebrew. This makes 'q' the only English consonant whose combinatory behavior is effectively restricted to a single successor letter in native vocabulary, a constraint that has notable implications for crossword construction and Scrabble strategy.
Diacritical variants: While 'q' has a comparatively small diacritical family, q̇ (dot above) appears in some transliteration schemes for Semitic languages, and ꝗ (stroke) was used in medieval Latin manuscripts as an abbreviation for 'que' or 'quod'. In Azerbaijani and several Turkic Latin orthographies, 'q' represents a uvular stop /q/ and functions as a standard letter rather than part of a digraph — a role quite different from its English behavior.