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