keecode logokeecode
#

Hash/pound

Decimal: 35
Hex: 23
Symbol

ASCII Values

Decimal

35

Hexadecimal

0x23

Character

#

Usage Examples

JavaScript (from decimal)

String.fromCharCode(35); // "#"

JavaScript (to decimal)

"#".charCodeAt(0); // 35

Python

chr(35)  # "#"
ord("#")  # 35

C/C++

char c = 35;  // '#'
int code = '#';  // 35