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==