ASCII 123
Left Curly Bracket ({)
Printable ASCII
Left curly brace. Opens code blocks, JSON objects, and template placeholders.
All encodings at a glance
| Decimal | 123 |
| Hexadecimal | 0x7B |
| Octal | 0173 |
| Binary | 01111011 |
| HTML numeric entity | { |
| URL encoding | %7B |
| UTF-8 bytes | 0x7B |
Code snippets
JavaScript
String.fromCharCode(123); // "{"
123.toString(16); // "7b"Python
chr(123) # '{'
ord(chr(123)) # 123
hex(123) # '0x7b'HTML
{ <!-- numeric entity (no named entity for this character) -->