ASCII 124
Vertical Line (|)
Printable ASCII
Vertical bar / pipe. Bitwise OR, regex alternation, shell pipe, TypeScript union types.
All encodings at a glance
| Decimal | 124 |
| Hexadecimal | 0x7C |
| Octal | 0174 |
| Binary | 01111100 |
| HTML numeric entity | | |
| URL encoding | %7C |
| UTF-8 bytes | 0x7C |
Code snippets
JavaScript
String.fromCharCode(124); // "|"
124.toString(16); // "7c"Python
chr(124) # '|'
ord(chr(124)) # 124
hex(124) # '0x7c'HTML
| <!-- numeric entity (no named entity for this character) -->