DevKits

ASCII 38

Ampersand (&)

Printable ASCII

Ampersand. Separates query string parameters. HTML entity: &. Bitwise AND in most languages.

All encodings at a glance

Decimal38
Hexadecimal0x26
Octal0046
Binary00100110
HTML numeric entity&
HTML named entity&
URL encoding%26
UTF-8 bytes0x26

Code snippets

JavaScript

String.fromCharCode(38); // "&"
38.toString(16); // "26"

Python

chr(38)           # '&'
ord(chr(38))      # 38
hex(38)           # '0x26'

HTML

&amp;   <!-- named entity -->
&#38;   <!-- numeric entity -->

Nearby codes