ASCII 190
Vulgar Fraction Three Quarters (¾)
Latin-1 Supplement
Three-quarter fraction.
All encodings at a glance
| Decimal | 190 |
| Hexadecimal | 0xBE |
| Octal | 0276 |
| Binary | 10111110 |
| HTML numeric entity | ¾ |
| HTML named entity | ¾ |
| URL encoding | %BE |
| UTF-8 bytes | 0xC2 0xBE |
Code snippets
JavaScript
String.fromCharCode(190); // "¾"
190.toString(16); // "be"Python
chr(190) # control char ¾
ord(chr(190)) # 190
hex(190) # '0xbe'HTML
¾ <!-- named entity -->
¾ <!-- numeric entity -->Unicode & UTF-8 note
In Unicode this is U+00BE. In UTF-8 it encodes to the byte sequence 0xC2 0xBE. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xBE, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.