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