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