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