ASCII 36
Dollar Sign ($)
Printable ASCII
Dollar sign. Common variable prefix in PHP and shell scripts. Used in regex to anchor to the end of a line.
All encodings at a glance
| Decimal | 36 |
| Hexadecimal | 0x24 |
| Octal | 0044 |
| Binary | 00100100 |
| HTML numeric entity | $ |
| URL encoding | %24 |
| UTF-8 bytes | 0x24 |
Code snippets
JavaScript
String.fromCharCode(36); // "$"
36.toString(16); // "24"Python
chr(36) # '$'
ord(chr(36)) # 36
hex(36) # '0x24'HTML
$ <!-- numeric entity (no named entity for this character) -->