ASCII Code 62 · Unicode U+003E · Hex 0x3E
ASCII code 62 (0x3E) represents the Greater-than sign character ">". The "Greater-than sign" character (>) with ASCII code 62 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.
| ASCII Code | 62 |
| Hexadecimal | 0x3E |
| Octal | 076 |
| Binary | 00111110 |
| Unicode | U+003E |
| Unicode Name | GREATER-THAN SIGN |
| HTML Numeric | > |
| HTML Entity | > |
| URL Escape | %3E |
| UTF-8 (Hex) | 3E |
| Quoted-Printable | > |
// Character literal
let char = '\x3E';
// Using char code
let char2 = String.fromCharCode(62);
// Unicode escape
let char3 = '\x3E'; # Character literal
char = '>'
# Using chr()
char = chr(62)
# Using ord() to get code
code = ord('>') # Returns 62 <!-- Direct character -->
>
<!-- HTML entity (numeric) -->
>
<!-- Hex entity -->
> // Character literal
char c = '\x3E';
// Using cast
char c2 = (char)62;
// To get code from char
int code = (int)'\x3E'; // Returns 62