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