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