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