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