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