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