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