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