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