DevKits

ASCII 123

Left Curly Bracket ({)

Printable ASCII

Left curly brace. Opens code blocks, JSON objects, and template placeholders.

All encodings at a glance

Decimal123
Hexadecimal0x7B
Octal0173
Binary01111011
HTML numeric entity{
URL encoding%7B
UTF-8 bytes0x7B

Code snippets

JavaScript

String.fromCharCode(123); // "{"
123.toString(16); // "7b"

Python

chr(123)           # '{'
ord(chr(123))      # 123
hex(123)           # '0x7b'

HTML

&#123;   <!-- numeric entity (no named entity for this character) -->

Nearby codes