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