¼

ASCII Character: Vulgar fraction one quarter

ASCII Code 188 · Unicode U+00BC · Hex 0xBC

one-quarter fraction-one-quarter

About the Vulgar fraction one quarter Character

ASCII code 188 (0xBC) represents the Vulgar fraction one quarter character in the extended ASCII table (128–255). It is a vulgar fraction character, providing a compact way to display common fractional values in text. 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 188
Hexadecimal 0xBC
Octal 274
Binary 10111100
Unicode U+00BC
Unicode Name VULGAR FRACTION ONE QUARTER
HTML Numeric ¼
HTML Entity ¼
URL Escape %BC
UTF-8 (Hex) C2 BC
Quoted-Printable =BC

Source Code Examples

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

Navigate

Copied!