ASCII 42
Asterisk (*)
Printable ASCII
Asterisk / star. Multiplication, wildcards, pointer dereference (C), and emphasis (Markdown).
All encodings at a glance
| Decimal | 42 |
| Hexadecimal | 0x2A |
| Octal | 0052 |
| Binary | 00101010 |
| HTML numeric entity | * |
| URL encoding | %2A |
| UTF-8 bytes | 0x2A |
Code snippets
JavaScript
String.fromCharCode(42); // "*"
42.toString(16); // "2a"Python
chr(42) # '*'
ord(chr(42)) # 42
hex(42) # '0x2a'HTML
* <!-- numeric entity (no named entity for this character) -->