DevKits

ASCII 35

Number Sign (#)

Printable ASCII

Number sign / hash / pound sign. Used for CSS IDs (#id), HTML fragments (#section), URL fragments, hashtags, and Markdown headings.

All encodings at a glance

Decimal35
Hexadecimal0x23
Octal0043
Binary00100011
HTML numeric entity#
URL encoding%23
UTF-8 bytes0x23

Code snippets

JavaScript

String.fromCharCode(35); // "#"
35.toString(16); // "23"

Python

chr(35)           # '#'
ord(chr(35))      # 35
hex(35)           # '0x23'

HTML

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

Nearby codes