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