C:
char c = '\u1F37A';
printf("%c\n", c); // Output: 🍺
JavaScript:
const char = '\u1F37A';
console.log(char); // Output: 🍺
Java:
char c = '\u1F37A';
System.out.println(c); // Output: 🍺
JSON:
{"text": "\u1F37A"} // Value: 🍺
Python:
char = '\u1F37A'
print(char) # Output: 🍺
Perl:
my $char = "\x{1F37A}";
print $char; # Output: 🍺
PHP:
$char = "\x{1F37A}";
echo $char; // Output: 🍺
Ruby:
char = "\u{1F37A}"
puts char # Output: 🍺
Rust:
let c = '\u{1F37A}';
println!("{}", c); // Output: 🍺
Go:
char := '\u1F37A'
fmt.Printf("%c\n", char) // Output: 🍺
CSS:
/* CSS content property */
.element::before {
content: "\01F37A"; /* Display: 🍺 */
}
HTML Decimal:
<p>HTML decimal: 🍺</p> <!-- Display: 🍺 -->
HTML Hexadecimal:
<p>HTML hex: 🍺</p> <!-- Display: 🍺 -->
URL Encoding:
// 🍺 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8D%BA
MD5:
7921cdcc6d6c108852b95db2311f7243
SHA1:
84fe0172b0ecf45c08095f47448fed3e2b661cf4
Base64:
8J+Nug==