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