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