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==