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