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