DevKits

ASCII 117

Latin Small Letter U (u)

Printable ASCII

Lowercase letter u. ASCII code 117. '\uXXXX' introduces a 4-hex-digit Unicode escape in JSON and JavaScript.

Common uses & context

Thelowercase letter 'u' has ASCII code 117 (0x75). Its uppercase twin 'U' sits exactly 32 code points away at 85. That constant gap of 32 — a single bit, 0x20 — is why changing letter case is one of the cheapest operations a CPU can do: you flip or mask one bit rather than looking anything up. Lowercase letter u. ASCII code 117. '\uXXXX' introduces a 4-hex-digit Unicode escape in JSON and JavaScript.

The lowercase Latin letters form the contiguous block 97–122, so range checks like c >= 'a' && c <= 'z' work without a lookup table. To convert 'u' to its uppercase form youclear bit 5: 'u' & ~0x20 gives 'U'. Because uppercase (65–90) sorts before lowercase (97–122) in raw byte order, naive sorting places every capitalized wordahead of every lowercase one — the reason "Zebra" comes before "apple" unless you sort case-insensitively.

All encodings at a glance

Decimal117
Hexadecimal0x75
Octal0165
Binary01110101
HTML numeric entity&#117;
URL encoding%75
UTF-8 bytes0x75

Code snippets

JavaScript

String.fromCharCode(117); // "u"
117.toString(16); // "75"

Python

chr(117)           # 'u'
ord(chr(117))      # 117
hex(117)           # '0x75'

HTML

&#117;   <!-- numeric entity (no named entity for this character) -->

Programming notes

  • Case toggle: 'u' & ~0x20 = 'U' (a single-bit change).
  • Letter test: c >= 'a' && c <= 'z' — the lowercase block is contiguous (97–122).

Frequently asked questions

What character is ASCII code 117?

ASCII code 117 is the character 'u' (Latin Small Letter U). In hexadecimal it is 0x75, in octal 0165, and in binary 01110101.

What is 0x75 in ASCII?

Hexadecimal 0x75 equals decimal 117, which is the character 'u' (Latin Small Letter U). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0x75 = 117) and look up that code point.

How do I write the character with code 117 in code?

In JavaScript use String.fromCharCode(117); in Python use chr(117); in HTML use the numeric entity &#117;. In a URL it is percent-encoded as %75, and in UTF-8 it is stored as the byte sequence 0x75.

What is the uppercase form of 'u' in ASCII?

'u' is code 117; its uppercase counterpart 'U' is code 85. The two always differ by 32, so you can convert by subtracting 32 (or clearing bit 0x20).

Nearby codes

Encode & convert this character