DevKits

ASCII 125

Right Curly Bracket (})

Printable ASCII

Right curly brace. Closes code blocks, JSON objects, and template placeholders.

All encodings at a glance

Decimal125
Hexadecimal0x7D
Octal0175
Binary01111101
HTML numeric entity}
URL encoding%7D
UTF-8 bytes0x7D

Code snippets

JavaScript

String.fromCharCode(125); // "}"
125.toString(16); // "7d"

Python

chr(125)           # '}'
ord(chr(125))      # 125
hex(125)           # '0x7d'

HTML

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

Nearby codes