Unicode Finder

"✶" U+2736(SIX POINTED BLACK STAR)

U+2736
Block Name
Dingbats
Name
SIX POINTED BLACK STAR

Programming

C
\u2736
JavaScript
\u2736
Java
\u2736
Json
\u2736
Python
\u2736
Perl
\x{2736}
PHP
\x{2736}
Ruby
\u{2736}
Rust
\u{2736}
Go
\u2736

Web

CSS
\002736
HtmlDecimal
✶
HtmlHexadecimal
✶
Url
%E2%9C%B6

Code

MD5
926f057494c37e7e5557f734124242a0
Sha1
e4750d00d4d65878772e33a527aef8adce8e9184
Base64
4py2

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2736';
console.log(char);  // Output: ✶

Java:

char c = '\u2736';
System.out.println(c);  // Output: ✶

JSON:

{"text": "\u2736"}  // Value: ✶

Python:

char = '\u2736'
print(char)  # Output: ✶

Perl:

my $char = "\x{2736}";
print $char;  # Output: ✶

PHP:

$char = "\x{2736}";
echo $char;  // Output: ✶

Ruby:

char = "\u{2736}"
puts char  # Output: ✶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002736";  /* Display: ✶ */
}

HTML Decimal:

<p>HTML decimal: &#10038;</p>  <!-- Display: ✶ -->

HTML Hexadecimal:

<p>HTML hex: &#x2736;</p>  <!-- Display: ✶ -->

URL Encoding:

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

Encodings

MD5:

926f057494c37e7e5557f734124242a0

SHA1:

e4750d00d4d65878772e33a527aef8adce8e9184

Base64:

4py2