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