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