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