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