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