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