DevKits

ASCII 42

Asterisk (*)

Printable ASCII

Asterisk / star. Multiplication, wildcards, pointer dereference (C), and emphasis (Markdown).

All encodings at a glance

Decimal42
Hexadecimal0x2A
Octal0052
Binary00101010
HTML numeric entity*
URL encoding%2A
UTF-8 bytes0x2A

Code snippets

JavaScript

String.fromCharCode(42); // "*"
42.toString(16); // "2a"

Python

chr(42)           # '*'
ord(chr(42))      # 42
hex(42)           # '0x2a'

HTML

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

Nearby codes