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