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