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