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