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