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