DevKits

ASCII 62

Greater-Than Sign (>)

Printable ASCII

Greater-than sign. Comparison; closes HTML/XML tags. HTML entity >.

All encodings at a glance

Decimal62
Hexadecimal0x3E
Octal0076
Binary00111110
HTML numeric entity>
HTML named entity>
URL encoding%3E
UTF-8 bytes0x3E

Code snippets

JavaScript

String.fromCharCode(62); // ">"
62.toString(16); // "3e"

Python

chr(62)           # '>'
ord(chr(62))      # 62
hex(62)           # '0x3e'

HTML

&gt;   <!-- named entity -->
&#62;   <!-- numeric entity -->

Nearby codes