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