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