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