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