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==