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