ASCII 38
Ampersand (&)
Printable ASCII
Ampersand. Separates query string parameters. HTML entity: &. Bitwise AND in most languages.
All encodings at a glance
| Decimal | 38 |
| Hexadecimal | 0x26 |
| Octal | 0046 |
| Binary | 00100110 |
| HTML numeric entity | & |
| HTML named entity | & |
| URL encoding | %26 |
| UTF-8 bytes | 0x26 |
Code snippets
JavaScript
String.fromCharCode(38); // "&"
38.toString(16); // "26"Python
chr(38) # '&'
ord(chr(38)) # 38
hex(38) # '0x26'HTML
& <!-- named entity -->
& <!-- numeric entity -->