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