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