DevKits

ASCII 91

Left Square Bracket ([)

Printable ASCII

Left square bracket. Opens array literals and index accesses.

All encodings at a glance

Decimal91
Hexadecimal0x5B
Octal0133
Binary01011011
HTML numeric entity[
URL encoding%5B
UTF-8 bytes0x5B

Code snippets

JavaScript

String.fromCharCode(91); // "["
91.toString(16); // "5b"

Python

chr(91)           # '['
ord(chr(91))      # 91
hex(91)           # '0x5b'

HTML

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

Nearby codes