Unicode Finder

"๐ŸŒผ" U+1F33C(BLOSSOM)

๐ŸŒผ
U+1F33C
ใƒ–ใƒญใƒƒใ‚ฏๅ
Miscellaneous Symbols and Pictographs
ๅๅ‰
BLOSSOM

Programming

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

Web

CSS
\01F33C
HtmlDecimal
🌼
HtmlHexadecimal
🌼
Url
%F0%9F%8C%BC

Code

MD5
433e33ebe6585b2285dc164c858d0c2b
Sha1
22edb70b0355d7ee22c7a5d996b6a39519dc5438
Base64
8J+MvA==

ไฝฟ็”จไพ‹

Programming Languages

C:

char c = '\u1F33C';
printf("%c\n", c);  // Output: ๐ŸŒผ

JavaScript:

const char = '\u1F33C';
console.log(char);  // Output: ๐ŸŒผ

Java:

char c = '\u1F33C';
System.out.println(c);  // Output: ๐ŸŒผ

JSON:

{"text": "\u1F33C"}  // Value: ๐ŸŒผ

Python:

char = '\u1F33C'
print(char)  # Output: ๐ŸŒผ

Perl:

my $char = "\x{1F33C}";
print $char;  # Output: ๐ŸŒผ

PHP:

$char = "\x{1F33C}";
echo $char;  // Output: ๐ŸŒผ

Ruby:

char = "\u{1F33C}"
puts char  # Output: ๐ŸŒผ

Rust:

let c = '\u{1F33C}';
println!("{}", c);  // Output: ๐ŸŒผ

Go:

char := '\u1F33C'
fmt.Printf("%c\n", char)  // Output: ๐ŸŒผ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F33C";  /* Display: ๐ŸŒผ */
}

HTML Decimal:

<p>HTML decimal: &#127804;</p>  <!-- Display: ๐ŸŒผ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F33C;</p>  <!-- Display: ๐ŸŒผ -->

URL Encoding:

// ๐ŸŒผ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8C%BC

Encodings

MD5:

433e33ebe6585b2285dc164c858d0c2b

SHA1:

22edb70b0355d7ee22c7a5d996b6a39519dc5438

Base64:

8J+MvA==