C:
char c = '\u1F47A';
printf("%c\n", c); // Output: 👺
JavaScript:
const char = '\u1F47A';
console.log(char); // Output: 👺
Java:
char c = '\u1F47A';
System.out.println(c); // Output: 👺
JSON:
{"text": "\u1F47A"} // Value: 👺
Python:
char = '\u1F47A'
print(char) # Output: 👺
Perl:
my $char = "\x{1F47A}";
print $char; # Output: 👺
PHP:
$char = "\x{1F47A}";
echo $char; // Output: 👺
Ruby:
char = "\u{1F47A}"
puts char # Output: 👺
Rust:
let c = '\u{1F47A}';
println!("{}", c); // Output: 👺
Go:
char := '\u1F47A'
fmt.Printf("%c\n", char) // Output: 👺
CSS:
/* CSS content property */
.element::before {
content: "\01F47A"; /* 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%BA
MD5:
5e9802661620b06a6ea5204a25254da2
SHA1:
c3773e28bd80f51097288a16584bfd3a4a666327
Base64:
8J+Rug==