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