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