Unicode Finder

"✱" U+2731(HEAVY ASTERISK)

U+2731
Block Name
Dingbats
Name
HEAVY ASTERISK

Programming

C
\u2731
JavaScript
\u2731
Java
\u2731
Json
\u2731
Python
\u2731
Perl
\x{2731}
PHP
\x{2731}
Ruby
\u{2731}
Rust
\u{2731}
Go
\u2731

Web

CSS
\002731
HtmlDecimal
✱
HtmlHexadecimal
✱
Url
%E2%9C%B1

Code

MD5
9adf741fcbe9d8e833650ffb27b7e88d
Sha1
8aa567de40d2b374b9c90cc70a44c53c46ea76e9
Base64
4pyx

Usage Examples

Programming Languages

C:

char c = '\u2731';
printf("%c\n", c);  // Output: ✱

JavaScript:

const char = '\u2731';
console.log(char);  // Output: ✱

Java:

char c = '\u2731';
System.out.println(c);  // Output: ✱

JSON:

{"text": "\u2731"}  // Value: ✱

Python:

char = '\u2731'
print(char)  # Output: ✱

Perl:

my $char = "\x{2731}";
print $char;  # Output: ✱

PHP:

$char = "\x{2731}";
echo $char;  // Output: ✱

Ruby:

char = "\u{2731}"
puts char  # Output: ✱

Rust:

let c = '\u{2731}';
println!("{}", c);  // Output: ✱

Go:

char := '\u2731'
fmt.Printf("%c\n", char)  // Output: ✱

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002731";  /* Display: ✱ */
}

HTML Decimal:

<p>HTML decimal: &#10033;</p>  <!-- Display: ✱ -->

HTML Hexadecimal:

<p>HTML hex: &#x2731;</p>  <!-- Display: ✱ -->

URL Encoding:

// ✱ URL encoding
https://unicodefinder.com/search.php?query=%E2%9C%B1

Encodings

MD5:

9adf741fcbe9d8e833650ffb27b7e88d

SHA1:

8aa567de40d2b374b9c90cc70a44c53c46ea76e9

Base64:

4pyx