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