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