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