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