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