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