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==