keecode logokeecode
V

Uppercase V

Decimal: 86
Hex: 56
Uppercase

ASCII Values

Decimal

86

Hexadecimal

0x56

Character

V

Usage Examples

JavaScript (from decimal)

String.fromCharCode(86); // "V"

JavaScript (to decimal)

"V".charCodeAt(0); // 86

Python

chr(86)  # "V"
ord("V")  # 86

C/C++

char c = 86;  // 'V'
int code = 'V';  // 86