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