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