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