DevKits

ASCII 60

Less-Than Sign (<)

Printable ASCII

Less-than sign. Comparison operator; also opens HTML/XML tags. Must be HTML-encoded as &lt;.

All encodings at a glance

Decimal60
Hexadecimal0x3C
Octal0074
Binary00111100
HTML numeric entity&#60;
HTML named entity&lt;
URL encoding%3C
UTF-8 bytes0x3C

Code snippets

JavaScript

String.fromCharCode(60); // "<"
60.toString(16); // "3c"

Python

chr(60)           # '<'
ord(chr(60))      # 60
hex(60)           # '0x3c'

HTML

&lt;   <!-- named entity -->
&#60;   <!-- numeric entity -->

Nearby codes