Unicode Finder

"๐ŸŒ" U+1F34C(BANANA)

๐ŸŒ
U+1F34C
Nome do Bloco
Miscellaneous Symbols and Pictographs
Nome
BANANA

Programming

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

Web

CSS
\01F34C
HtmlDecimal
🍌
HtmlHexadecimal
🍌
Url
%F0%9F%8D%8C

Code

MD5
806a7d7522baf4c10d2b45949075b382
Sha1
032434fa198aa6e87f36d06dc5f48949d45c550f
Base64
8J+NjA==

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F34C"}  // Value: ๐ŸŒ

Python:

char = '\u1F34C'
print(char)  # Output: ๐ŸŒ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F34C}"
puts char  # Output: ๐ŸŒ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

806a7d7522baf4c10d2b45949075b382

SHA1:

032434fa198aa6e87f36d06dc5f48949d45c550f

Base64:

8J+NjA==