Unicode Finder

"🍹" U+1F379(TROPICAL DRINK)

🍹
U+1F379
Nome del Blocco
Miscellaneous Symbols and Pictographs
Nome
TROPICAL DRINK

Programming

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

Web

CSS
\01F379
HtmlDecimal
🍹
HtmlHexadecimal
🍹
Url
%F0%9F%8D%B9

Code

MD5
ea9ba5f97e16a0088978e608dc0f6567
Sha1
691e48c5fa8ea2b30dd5362372dd4075835e3775
Base64
8J+NuQ==

Esempi di Utilizzo

Programming Languages

C:

char c = '\u1F379';
printf("%c\n", c);  // Output: 🍹

JavaScript:

const char = '\u1F379';
console.log(char);  // Output: 🍹

Java:

char c = '\u1F379';
System.out.println(c);  // Output: 🍹

JSON:

{"text": "\u1F379"}  // Value: 🍹

Python:

char = '\u1F379'
print(char)  # Output: 🍹

Perl:

my $char = "\x{1F379}";
print $char;  # Output: 🍹

PHP:

$char = "\x{1F379}";
echo $char;  // Output: 🍹

Ruby:

char = "\u{1F379}"
puts char  # Output: 🍹

Rust:

let c = '\u{1F379}';
println!("{}", c);  // Output: 🍹

Go:

char := '\u1F379'
fmt.Printf("%c\n", char)  // Output: 🍹

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F379";  /* Display: 🍹 */
}

HTML Decimal:

<p>HTML decimal: &#127865;</p>  <!-- Display: 🍹 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F379;</p>  <!-- Display: 🍹 -->

URL Encoding:

// 🍹 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8D%B9

Encodings

MD5:

ea9ba5f97e16a0088978e608dc0f6567

SHA1:

691e48c5fa8ea2b30dd5362372dd4075835e3775

Base64:

8J+NuQ==