Back
Asciify Logo
Asciify

Latin Small Letter U

Carrying one of the widest vowel-sound inventories in English — from /uː/ in 'true' to /ʌ/ in 'but' to /juː/ in 'use' — lowercase 'u' is the twenty-first letter of the Latin alphabet and the fifth vowel, accounting for roughly 2.8 % of characters in typical English corpora. In programming, its most visible role is as a prefix for Unicode escape sequences across many languages. Its ASCII code point is 117 (0x75), 32 above its uppercase counterpart 'U' at 85 (0x55), maintaining the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs.

Latin Letter

Technical Details

Code Example

</>
// Unsigned suffix
unsigned int u = 100u;
unsigned long ul = 1000UL;
uint8_t byte = 0xFFu; // Max unsigned byte

Common Usage

  • Unicode escape prefix: In JavaScript, Java, Python, C#, and several other languages, \u introduces a four-digit hexadecimal Unicode escape (\u0041 for 'A'). Extended forms vary — JavaScript (ES6+) supports \u{1F600} for code points beyond the Basic Multilingual Plane, while Java uses \uXXXX escape sequences and represents non-BMP characters using surrogate pairs. Python offers \U with eight hex digits. This makes 'u' a character that commonly appears when working with Unicode escapes in source code.

  • Unsigned type marker: In C and C++, the 'u' or 'U' suffix marks an integer literal as unsigned (42u), and the type prefix appears in unsigned int, uint8_t, uint32_t, and similar fixed-width types from <stdint.h>. In Rust, the unsigned integer family — u8, u16, u32, u64, u128 — uses 'u' as a type-name prefix, establishing a convention that has spread to several newer systems languages.

  • Obligatory partner to 'q': In English orthography inherited from Latin, 'u' most often follows 'q', forming the 'qu' pair pronounced /kw/ (queen, quiet, quarter). The set of English-accepted words with 'q' not followed by 'u' — qi, qat, qoph, qwerty — are borrowings from other languages or modern coinages that bypass the traditional Latin pairing.

  • Diacritical variants: As a vowel, 'u' supports a broad set of accented forms — ú (acute), ù (grave), û (circumflex), ü (diaeresis), ů (ring above), ū (macron), ũ (tilde), ų (ogonek), and ű (double acute). Of these, ü functions as a separate letter in Turkish, and ű is a distinct letter in Hungarian. The diaeresis form ü also carries phonemic weight in German and appears in Mandarin Pinyin romanization.

  • Unicode escape prefix: In JavaScript, Java, Python, C#, and several other languages, \u introduces a four-digit hexadecimal Unicode escape (\u0041 for 'A'). Extended forms vary — JavaScript (ES6+) supports \u{1F600} for code points beyond the Basic Multilingual Plane, while Java uses \uXXXX escape sequences and represents non-BMP characters using surrogate pairs. Python offers \U with eight hex digits. This makes 'u' a character that commonly appears when working with Unicode escapes in source code.

  • Unsigned type marker: In C and C++, the 'u' or 'U' suffix marks an integer literal as unsigned (42u), and the type prefix appears in unsigned int, uint8_t, uint32_t, and similar fixed-width types from <stdint.h>. In Rust, the unsigned integer family — u8, u16, u32, u64, u128 — uses 'u' as a type-name prefix, establishing a convention that has spread to several newer systems languages.

  • Obligatory partner to 'q': In English orthography inherited from Latin, 'u' most often follows 'q', forming the 'qu' pair pronounced /kw/ (queen, quiet, quarter). The set of English-accepted words with 'q' not followed by 'u' — qi, qat, qoph, qwerty — are borrowings from other languages or modern coinages that bypass the traditional Latin pairing.

  • Diacritical variants: As a vowel, 'u' supports a broad set of accented forms — ú (acute), ù (grave), û (circumflex), ü (diaeresis), ů (ring above), ū (macron), ũ (tilde), ų (ogonek), and ű (double acute). Of these, ü functions as a separate letter in Turkish, and ű is a distinct letter in Hungarian. The diaeresis form ü also carries phonemic weight in German and appears in Mandarin Pinyin romanization.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026