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==