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