<

ASCII Character: Less-than sign

ASCII Code 60 · Unicode U+003C · Hex 0x3C

less-than left-angle-bracket

About the Less-than sign Character

ASCII code 60 (0x3C) represents the Less-than sign character "<". The "Less-than sign" character (<) with ASCII code 60 is a bracket or delimiter character. Brackets are used in programming for grouping expressions, array indexing, object literals, and defining code blocks. They always come in matching pairs. The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 60
Hexadecimal 0x3C
Octal 074
Binary 00111100
Unicode U+003C
Unicode Name LESS-THAN SIGN
HTML Numeric &#60;
HTML Entity &lt;
URL Escape %3C
UTF-8 (Hex) 3C
Quoted-Printable <

Source Code Examples

JavaScript
// Character literal
let char = '\x3C';
// Using char code
let char2 = String.fromCharCode(60);
// Unicode escape
let char3 = '\x3C';
Python
# Character literal
char = '<'
# Using chr()
char = chr(60)
# Using ord() to get code
code = ord('<')  # Returns 60
HTML
<!-- Direct character -->
&#60;
<!-- HTML entity (numeric) -->
&#60;
<!-- Hex entity -->
&#x3C;
C#
// Character literal
char c = '\x3C';
// Using cast
char c2 = (char)60;
// To get code from char
int code = (int)'\x3C';  // Returns 60

Navigate

Copied!