Unicode Finder

"๐Ÿžท" U+1F7B7(BOLD SIX SPOKED ASTERISK)

๐Ÿžท
U+1F7B7
Nome do Bloco
Unknown Block
Nome
BOLD SIX SPOKED ASTERISK

Programming

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

Web

CSS
\01F7B7
HtmlDecimal
🞷
HtmlHexadecimal
🞷
Url
%F0%9F%9E%B7

Code

MD5
133e909e7216f926ef55b382c7df140f
Sha1
500a504242d385cc3be7047bfe067df4e277f17b
Base64
8J+etw==

Exemplos de Uso

Programming Languages

C:

char c = '\u1F7B7';
printf("%c\n", c);  // Output: ๐Ÿžท

JavaScript:

const char = '\u1F7B7';
console.log(char);  // Output: ๐Ÿžท

Java:

char c = '\u1F7B7';
System.out.println(c);  // Output: ๐Ÿžท

JSON:

{"text": "\u1F7B7"}  // Value: ๐Ÿžท

Python:

char = '\u1F7B7'
print(char)  # Output: ๐Ÿžท

Perl:

my $char = "\x{1F7B7}";
print $char;  # Output: ๐Ÿžท

PHP:

$char = "\x{1F7B7}";
echo $char;  // Output: ๐Ÿžท

Ruby:

char = "\u{1F7B7}"
puts char  # Output: ๐Ÿžท

Rust:

let c = '\u{1F7B7}';
println!("{}", c);  // Output: ๐Ÿžท

Go:

char := '\u1F7B7'
fmt.Printf("%c\n", char)  // Output: ๐Ÿžท

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F7B7";  /* Display: ๐Ÿžท */
}

HTML Decimal:

<p>HTML decimal: &#128951;</p>  <!-- Display: ๐Ÿžท -->

HTML Hexadecimal:

<p>HTML hex: &#x1F7B7;</p>  <!-- Display: ๐Ÿžท -->

URL Encoding:

// ๐Ÿžท URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%9E%B7

Encodings

MD5:

133e909e7216f926ef55b382c7df140f

SHA1:

500a504242d385cc3be7047bfe067df4e277f17b

Base64:

8J+etw==