û

ASCII Character: u with circumflex

ASCII Code 251 · Unicode U+00FB · Hex 0xFB

About the u with circumflex 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.

Encoding Details

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

Source Code Examples

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

Navigate

Copied!