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