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
| Decimal | 95 |
| Hexadecimal | 0x5F |
| Octal | 0137 |
| Binary | 01011111 |
| HTML numeric entity | _ |
| URL encoding | %5F |
| UTF-8 bytes | 0x5F |
Code snippets
JavaScript
String.fromCharCode(95); // "_"
95.toString(16); // "5f"Python
chr(95) # '_'
ord(chr(95)) # 95
hex(95) # '0x5f'HTML
_ <!-- numeric entity (no named entity for this character) -->