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