DevKits

ASCII 95

Low Line (Underscore) (_)

Printable ASCII

Underscore. Common word separator in snake_case. Often used as a placeholder in ignored destructures (_x).

All encodings at a glance

Decimal95
Hexadecimal0x5F
Octal0137
Binary01011111
HTML numeric entity_
URL encoding%5F
UTF-8 bytes0x5F

Code snippets

JavaScript

String.fromCharCode(95); // "_"
95.toString(16); // "5f"

Python

chr(95)           # '_'
ord(chr(95))      # 95
hex(95)           # '0x5f'

HTML

&#95;   <!-- numeric entity (no named entity for this character) -->

Nearby codes