DevKits

ASCII 124

Vertical Line (|)

Printable ASCII

Vertical bar / pipe. Bitwise OR, regex alternation, shell pipe, TypeScript union types.

All encodings at a glance

Decimal124
Hexadecimal0x7C
Octal0174
Binary01111100
HTML numeric entity|
URL encoding%7C
UTF-8 bytes0x7C

Code snippets

JavaScript

String.fromCharCode(124); // "|"
124.toString(16); // "7c"

Python

chr(124)           # '|'
ord(chr(124))      # 124
hex(124)           # '0x7c'

HTML

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

Nearby codes