Unicode Finder

"๐Ÿถ" U+1F3F6(BLACK ROSETTE)

๐Ÿถ
U+1F3F6
Nama Blok
Miscellaneous Symbols and Pictographs
Nama
BLACK ROSETTE

Programming

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

Web

CSS
\01F3F6
HtmlDecimal
🏶
HtmlHexadecimal
🏶
Url
%F0%9F%8F%B6

Code

MD5
073b82b3d97bba357d548ddfeb74691a
Sha1
9b44df9e8b1137976d849fff86d58e24ed178b90
Base64
8J+Ptg==

Contoh Penggunaan

Programming Languages

C:

char c = '\u1F3F6';
printf("%c\n", c);  // Output: ๐Ÿถ

JavaScript:

const char = '\u1F3F6';
console.log(char);  // Output: ๐Ÿถ

Java:

char c = '\u1F3F6';
System.out.println(c);  // Output: ๐Ÿถ

JSON:

{"text": "\u1F3F6"}  // Value: ๐Ÿถ

Python:

char = '\u1F3F6'
print(char)  # Output: ๐Ÿถ

Perl:

my $char = "\x{1F3F6}";
print $char;  # Output: ๐Ÿถ

PHP:

$char = "\x{1F3F6}";
echo $char;  // Output: ๐Ÿถ

Ruby:

char = "\u{1F3F6}"
puts char  # Output: ๐Ÿถ

Rust:

let c = '\u{1F3F6}';
println!("{}", c);  // Output: ๐Ÿถ

Go:

char := '\u1F3F6'
fmt.Printf("%c\n", char)  // Output: ๐Ÿถ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F3F6";  /* Display: ๐Ÿถ */
}

HTML Decimal:

<p>HTML decimal: &#127990;</p>  <!-- Display: ๐Ÿถ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3F6;</p>  <!-- Display: ๐Ÿถ -->

URL Encoding:

// ๐Ÿถ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8F%B6

Encodings

MD5:

073b82b3d97bba357d548ddfeb74691a

SHA1:

9b44df9e8b1137976d849fff86d58e24ed178b90

Base64:

8J+Ptg==