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