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