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
| Decimal | 35 |
| Hexadecimal | 0x23 |
| Octal | 0043 |
| Binary | 00100011 |
| HTML numeric entity | # |
| URL encoding | %23 |
| UTF-8 bytes | 0x23 |
Code snippets
JavaScript
String.fromCharCode(35); // "#"
35.toString(16); // "23"Python
chr(35) # '#'
ord(chr(35)) # 35
hex(35) # '0x23'HTML
# <!-- numeric entity (no named entity for this character) -->