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