Unicode Finder

"๐ŸŒธ" U+1F338(CHERRY BLOSSOM)

๐ŸŒธ
U+1F338
Nome do Bloco
Miscellaneous Symbols and Pictographs
Nome
CHERRY BLOSSOM

Programming

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

Web

CSS
\01F338
HtmlDecimal
🌸
HtmlHexadecimal
🌸
Url
%F0%9F%8C%B8

Code

MD5
19c6eb6fb10428561d20711fcb9859cc
Sha1
d4d2b6dbf558293605a4b42714688e8f128fc0f8
Base64
8J+MuA==

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F338"}  // Value: ๐ŸŒธ

Python:

char = '\u1F338'
print(char)  # Output: ๐ŸŒธ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F338}"
puts char  # Output: ๐ŸŒธ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

19c6eb6fb10428561d20711fcb9859cc

SHA1:

d4d2b6dbf558293605a4b42714688e8f128fc0f8

Base64:

8J+MuA==