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==