ASCII 62
Greater-Than Sign (>)
Printable ASCII
Greater-than sign. Comparison; closes HTML/XML tags. HTML entity >.
All encodings at a glance
| Decimal | 62 |
| Hexadecimal | 0x3E |
| Octal | 0076 |
| Binary | 00111110 |
| HTML numeric entity | > |
| HTML named entity | > |
| URL encoding | %3E |
| UTF-8 bytes | 0x3E |
Code snippets
JavaScript
String.fromCharCode(62); // ">"
62.toString(16); // "3e"Python
chr(62) # '>'
ord(chr(62)) # 62
hex(62) # '0x3e'HTML
> <!-- named entity -->
> <!-- numeric entity -->