Unicode Finder

"🍷" U+1F377(WINE GLASS)

🍷
U+1F377
Nome del Blocco
Miscellaneous Symbols and Pictographs
Nome
WINE GLASS

Programming

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

Web

CSS
\01F377
HtmlDecimal
🍷
HtmlHexadecimal
🍷
Url
%F0%9F%8D%B7

Code

MD5
9f25c302a3e2e87beba6170d1f4a5f43
Sha1
24d52c0f4fc4948fd5df10cad17fd6e0158e16c8
Base64
8J+Ntw==

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1F377';
console.log(char);  // Output: 🍷

Java:

char c = '\u1F377';
System.out.println(c);  // Output: 🍷

JSON:

{"text": "\u1F377"}  // Value: 🍷

Python:

char = '\u1F377'
print(char)  # Output: 🍷

Perl:

my $char = "\x{1F377}";
print $char;  # Output: 🍷

PHP:

$char = "\x{1F377}";
echo $char;  // Output: 🍷

Ruby:

char = "\u{1F377}"
puts char  # Output: 🍷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127863;</p>  <!-- Display: 🍷 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F377;</p>  <!-- Display: 🍷 -->

URL Encoding:

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

Encodings

MD5:

9f25c302a3e2e87beba6170d1f4a5f43

SHA1:

24d52c0f4fc4948fd5df10cad17fd6e0158e16c8

Base64:

8J+Ntw==