}

ASCII Character: Closing brace

ASCII Code 125 · Unicode U+007D · Hex 0x7D

right-curly-bracket closing-brace right-brace

About the Closing brace Character

ASCII code 125 (0x7D) represents the Closing brace character "}". The "Closing brace" character (}) with ASCII code 125 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 125
Hexadecimal 0x7D
Octal 175
Binary 01111101
Unicode U+007D
Unicode Name RIGHT CURLY BRACKET
HTML Numeric }
HTML Entity }
URL Escape %7D
UTF-8 (Hex) 7D
Quoted-Printable }

Source Code Examples

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

Navigate

Copied!