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