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