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