û

ASCII Code 251

u with circumflex

About This Character

ASCII code 251 (0xFB) represents the u with circumflex character in the extended ASCII table (128–255). It is a Latin accented character commonly used in European languages such as French, German, Spanish, Portuguese, and Scandinavian languages. The extended ASCII range builds upon the original 128-character ASCII set, adding accented letters, currency symbols, typographic marks, and mathematical symbols. These characters are defined by the Windows-1252 (CP-1252) encoding, which is a superset of ISO 8859-1 (Latin-1). In modern web development, UTF-8 encoding is preferred, but understanding extended ASCII remains important for legacy system compatibility and character encoding troubleshooting.

Character Encoding

Decimal 251
Octal 373
Hexadecimal 0xFB
Binary 11111011
HTML Code û
HTML Entity û
Unicode U+00FB
Unicode Name LATIN SMALL LETTER U WITH CIRCUMFLEX
URL Escape %FB
Quoted-Printable =FB
UTF-8 (Hex) C3 BB
Category Extended — Latin Accented Letters

How to Type in Code

JavaScript
// Character literal
let char = 'û';
// Using char code
let char2 = String.fromCharCode(251);
// Unicode escape
let char3 = '\u00FB';
Python
# Character literal
char = 'û'
# Using chr()
char = chr(251)
# Using ord() to get code
code = ord('û')  # Returns 251
HTML
<!-- Direct character -->
û
<!-- HTML entity (numeric) -->
&#251;
<!-- Hex entity -->
&#xFB;
C#
// Character literal
char c = 'û';
// Using cast
char c2 = (char)251;
// To get code from char
int code = (int)'û';  // Returns 251

See Also

Copied!