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