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==