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