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