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