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==