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