Unicode Finder

"๐Ÿป" U+1F37B(CLINKING BEER MUGS)

๐Ÿป
U+1F37B
Nome del Blocco
Miscellaneous Symbols and Pictographs
Nome
CLINKING BEER MUGS

Programming

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

Web

CSS
\01F37B
HtmlDecimal
🍻
HtmlHexadecimal
🍻
Url
%F0%9F%8D%BB

Code

MD5
ddd6219b6403dc017b82c099fac8a172
Sha1
4163290dda56238f7c259ae2e9f8078267ce98a7
Base64
8J+Nuw==

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F37B"}  // Value: ๐Ÿป

Python:

char = '\u1F37B'
print(char)  # Output: ๐Ÿป

Perl:

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

PHP:

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

Ruby:

char = "\u{1F37B}"
puts char  # Output: ๐Ÿป

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

ddd6219b6403dc017b82c099fac8a172

SHA1:

4163290dda56238f7c259ae2e9f8078267ce98a7

Base64:

8J+Nuw==