DevKits

ASCII 190

Vulgar Fraction Three Quarters (¾)

Latin-1 Supplement

Three-quarter fraction.

All encodings at a glance

Decimal190
Hexadecimal0xBE
Octal0276
Binary10111110
HTML numeric entity¾
HTML named entity¾
URL encoding%BE
UTF-8 bytes0xC2 0xBE

Code snippets

JavaScript

String.fromCharCode(190); // "¾"
190.toString(16); // "be"

Python

chr(190)           # control char ¾
ord(chr(190))      # 190
hex(190)           # '0xbe'

HTML

&frac34;   <!-- named entity -->
&#190;   <!-- 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.

Nearby codes