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