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