Unicode Finder

"🞼" U+1F7BC(MEDIUM EIGHT SPOKED ASTERISK)

🞼
U+1F7BC
Bloknaam
Unknown Block
Naam
MEDIUM EIGHT SPOKED ASTERISK

Programming

C
\u1F7BC
JavaScript
\u1F7BC
Java
\u1F7BC
Json
\u1F7BC
Python
\u1F7BC
Perl
\x{1F7BC}
PHP
\x{1F7BC}
Ruby
\u{1F7BC}
Rust
\u{1F7BC}
Go
\u1F7BC

Web

CSS
\01F7BC
HtmlDecimal
🞼
HtmlHexadecimal
🞼
Url
%F0%9F%9E%BC

Code

MD5
d4aa300fcc8d3b464fc690b58651f9a4
Sha1
79b418b4fcb5974aec924bbe507cb6984007d8b9
Base64
8J+evA==

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1F7BC';
console.log(char);  // Output: 🞼

Java:

char c = '\u1F7BC';
System.out.println(c);  // Output: 🞼

JSON:

{"text": "\u1F7BC"}  // Value: 🞼

Python:

char = '\u1F7BC'
print(char)  # Output: 🞼

Perl:

my $char = "\x{1F7BC}";
print $char;  # Output: 🞼

PHP:

$char = "\x{1F7BC}";
echo $char;  // Output: 🞼

Ruby:

char = "\u{1F7BC}"
puts char  # Output: 🞼

Rust:

let c = '\u{1F7BC}';
println!("{}", c);  // Output: 🞼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F7BC";  /* Display: 🞼 */
}

HTML Decimal:

<p>HTML decimal: &#128956;</p>  <!-- Display: 🞼 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F7BC;</p>  <!-- Display: 🞼 -->

URL Encoding:

// 🞼 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%9E%BC

Encodings

MD5:

d4aa300fcc8d3b464fc690b58651f9a4

SHA1:

79b418b4fcb5974aec924bbe507cb6984007d8b9

Base64:

8J+evA==