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