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