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==