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