>
Greater than
Decimal: 62
Hex: 3E
Symbol
ASCII Values
Decimal
62
Hexadecimal
0x3E
Character
>
Usage Examples
JavaScript (from decimal)
String.fromCharCode(62); // ">"
JavaScript (to decimal)
">".charCodeAt(0); // 62
Python
chr(62) # ">"
ord(">") # 62C/C++
char c = 62; // '>' int code = '>'; // 62
Symbol Characters
Symbol characters include punctuation marks, mathematical operators, and special characters used in programming and text formatting.