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