DevKits

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

Decimal36
Hexadecimal0x24
Octal0044
Binary00100100
HTML numeric entity$
URL encoding%24
UTF-8 bytes0x24

Code snippets

JavaScript

String.fromCharCode(36); // "$"
36.toString(16); // "24"

Python

chr(36)           # '$'
ord(chr(36))      # 36
hex(36)           # '0x24'

HTML

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

Nearby codes