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