ƒ

ASCII Character: Latin small letter f with hook

ASCII Code 131 · Unicode U+0083 · Hex 0x83

latin-small-f-with-hook florin

About the Latin small letter f with hook Character

ASCII code 131 (0x83) represents the Latin small letter f with hook character in the extended ASCII table (128–255). It is part of the extended ASCII character set defined by the Windows-1252 (CP-1252) encoding. 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 131
Hexadecimal 0x83
Octal 203
Binary 10000011
Unicode U+0083
Unicode Name LATIN SMALL LETTER F WITH HOOK
HTML Numeric ƒ
HTML Entity
URL Escape %83
UTF-8 (Hex) C6 92
Quoted-Printable =83

Source Code Examples

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

Navigate

Copied!