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