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