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