ASCII Code 93 · Unicode U+005D · Hex 0x5D
ASCII code 93 (0x5D) represents the Closing bracket character "]". The "Closing bracket" character (]) with ASCII code 93 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 | 93 |
| Hexadecimal | 0x5D |
| Octal | 135 |
| Binary | 01011101 |
| Unicode | U+005D |
| Unicode Name | RIGHT SQUARE BRACKET |
| HTML Numeric | ] |
| HTML Entity | ] |
| URL Escape | %5D |
| UTF-8 (Hex) | 5D |
| Quoted-Printable | ] |
// Character literal
let char = ']';
// Using char code
let char2 = String.fromCharCode(93);
// Unicode escape
let char3 = '\x5D'; # Character literal
char = ']'
# Using chr()
char = chr(93)
# Using ord() to get code
code = ord(']') # Returns 93 <!-- Direct character -->
]
<!-- HTML entity (numeric) -->
]
<!-- Hex entity -->
] // Character literal
char c = ']';
// Using cast
char c2 = (char)93;
// To get code from char
int code = (int)']'; // Returns 93