C:
char c = '\u1F629';
printf("%c\n", c); // Output: ๐ฉ
JavaScript:
const char = '\u1F629';
console.log(char); // Output: ๐ฉ
Java:
char c = '\u1F629';
System.out.println(c); // Output: ๐ฉ
JSON:
{"text": "\u1F629"} // Value: ๐ฉ
Python:
char = '\u1F629'
print(char) # Output: ๐ฉ
Perl:
my $char = "\x{1F629}";
print $char; # Output: ๐ฉ
PHP:
$char = "\x{1F629}";
echo $char; // Output: ๐ฉ
Ruby:
char = "\u{1F629}"
puts char # Output: ๐ฉ
Rust:
let c = '\u{1F629}';
println!("{}", c); // Output: ๐ฉ
Go:
char := '\u1F629'
fmt.Printf("%c\n", char) // Output: ๐ฉ
CSS:
/* CSS content property */
.element::before {
content: "\01F629"; /* 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%98%A9
MD5:
42c32c07054c76dc3c90db7c906c4e38
SHA1:
6c838d4a367ecb096c27129a948f8b971f226948
Base64:
8J+YqQ==