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