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