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