ASCII 60
Less-Than Sign (<)
Printable ASCII
Less-than sign. Comparison operator; also opens HTML/XML tags. Must be HTML-encoded as <.
All encodings at a glance
| Decimal | 60 |
| Hexadecimal | 0x3C |
| Octal | 0074 |
| Binary | 00111100 |
| HTML numeric entity | < |
| HTML named entity | < |
| URL encoding | %3C |
| UTF-8 bytes | 0x3C |
Code snippets
JavaScript
String.fromCharCode(60); // "<"
60.toString(16); // "3c"Python
chr(60) # '<'
ord(chr(60)) # 60
hex(60) # '0x3c'HTML
< <!-- named entity -->
< <!-- numeric entity -->