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