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