ASCII 125
Right Curly Bracket (})
Printable ASCII
Right curly brace. Closes code blocks, JSON objects, and template placeholders.
All encodings at a glance
| Decimal | 125 |
| Hexadecimal | 0x7D |
| Octal | 0175 |
| Binary | 01111101 |
| HTML numeric entity | } |
| URL encoding | %7D |
| UTF-8 bytes | 0x7D |
Code snippets
JavaScript
String.fromCharCode(125); // "}"
125.toString(16); // "7d"Python
chr(125) # '}'
ord(chr(125)) # 125
hex(125) # '0x7d'HTML
} <!-- numeric entity (no named entity for this character) -->