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