C:
char c = '\u1F368';
printf("%c\n", c); // Output: 🍨
JavaScript:
const char = '\u1F368';
console.log(char); // Output: 🍨
Java:
char c = '\u1F368';
System.out.println(c); // Output: 🍨
JSON:
{"text": "\u1F368"} // Value: 🍨
Python:
char = '\u1F368'
print(char) # Output: 🍨
Perl:
my $char = "\x{1F368}";
print $char; # Output: 🍨
PHP:
$char = "\x{1F368}";
echo $char; // Output: 🍨
Ruby:
char = "\u{1F368}"
puts char # Output: 🍨
Rust:
let c = '\u{1F368}';
println!("{}", c); // Output: 🍨
Go:
char := '\u1F368'
fmt.Printf("%c\n", char) // Output: 🍨
CSS:
/* CSS content property */
.element::before {
content: "\01F368"; /* 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%A8
MD5:
5a55f5e593ddbbdadbab7d4090ae2f42
SHA1:
df8ca9f4c64fdb58359889176eb87e4924e3de0f
Base64:
8J+NqA==