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