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