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