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